|
| 1 | +--- |
| 2 | +layout: plugin |
| 3 | + |
| 4 | +id: cvprinting |
| 5 | +title: OctoPrint-CVPrinting |
| 6 | +description: Computer vision for detecting issue during 3d printing with automatic notification to Discord and Telegram and pausing the print. This plugin has minimal HW requirements. Check plugin page for more information. |
| 7 | +authors: |
| 8 | +- Viliam Chudacik |
| 9 | +license: AGPLv3 |
| 10 | + |
| 11 | +# today's date in format YYYY-MM-DD, e.g. |
| 12 | +date: 2025-04-21 |
| 13 | + |
| 14 | +homepage: https://github.com/Spini11/OctoPrint-Cvprinting |
| 15 | +source: https://github.com/Spini11/OctoPrint-Cvprinting |
| 16 | +archive: https://github.com/Spini11/OctoPrint-Cvprinting/archive/refs/heads/master.zip |
| 17 | + |
| 18 | +# Set this if your plugin heavily interacts with any kind of cloud services. |
| 19 | +#privacypolicy: your plugin's privacy policy URL |
| 20 | + |
| 21 | +# Set this to true if your plugin uses the dependency_links setup parameter to include |
| 22 | +# library versions not yet published on pypi. SHOULD ONLY BE USED IF THERE IS NO OTHER OPTION! |
| 23 | +#follow_dependency_links: false |
| 24 | + |
| 25 | +tags: |
| 26 | +- defect detections |
| 27 | +- ai |
| 28 | +- computer vision |
| 29 | +- discord |
| 30 | +- telegram |
| 31 | +- notifications |
| 32 | +- local |
| 33 | +- monitoring |
| 34 | + |
| 35 | +screenshots: |
| 36 | +- url: /assets/img/plugins/cvprinting/sidebar.png |
| 37 | + alt: "Sidebar with current status and settings" |
| 38 | + caption: "Sidebar box allows to see current detection confidence and change notification and pause settings" |
| 39 | +- url: /assets/img/plugins/cvprinting/discordNotification.png |
| 40 | + alt: "Discord notification showing snapshot of spaghetty error, togehter with confidence value and information that print has been paused" |
| 41 | + caption: "Example of discord notification after print pause has been triggered" |
| 42 | + |
| 43 | +featuredimage: /assets/img/plugins/cvprinting/discordNotification.png |
| 44 | + |
| 45 | +# You only need the following if your plugin requires specific OctoPrint versions or |
| 46 | +# specific operating systems to function - you can safely remove the whole |
| 47 | +# "compatibility" block if this is not the case. |
| 48 | + |
| 49 | +compatibility: |
| 50 | + |
| 51 | + # List of compatible versions |
| 52 | + # |
| 53 | + # A single version number will be interpretated as a minimum version requirement, |
| 54 | + # e.g. "1.3.1" will show the plugin as compatible to OctoPrint versions 1.3.1 and up. |
| 55 | + # More sophisticated version requirements can be modelled too by using PEP440 |
| 56 | + # compatible version specifiers. |
| 57 | + # |
| 58 | + # You can also remove the whole "octoprint" block. Removing it will default to all |
| 59 | + # OctoPrint versions being supported. |
| 60 | + |
| 61 | + octoprint: |
| 62 | + - 1.10.3 |
| 63 | + |
| 64 | + # List of compatible operating systems |
| 65 | + # |
| 66 | + # Possible values: |
| 67 | + # |
| 68 | + # - windows |
| 69 | + # - linux |
| 70 | + # - macos |
| 71 | + # - freebsd |
| 72 | + # |
| 73 | + # There are also two OS groups defined that get expanded on usage: |
| 74 | + # |
| 75 | + # - posix: linux, macos and freebsd |
| 76 | + # - nix: linux and freebsd |
| 77 | + # |
| 78 | + # You can also remove the whole "os" block. Removing it will default to all |
| 79 | + # operating systems being supported. |
| 80 | + |
| 81 | + os: |
| 82 | + - linux |
| 83 | + |
| 84 | + # Compatible Python version |
| 85 | + # |
| 86 | + # Plugins should aim for compatibility for Python 2 and 3 for now, in which case the value should be ">=2.7,<4". |
| 87 | + # |
| 88 | + # Plugins that only wish to support Python 3 should set it to ">=3,<4". |
| 89 | + # |
| 90 | + # If your plugin only supports Python 2 it will no longer be accepted on the plugin repository. |
| 91 | + # |
| 92 | + # Uncomment the appropriate setting |
| 93 | + |
| 94 | + #python: ">=2.7,<3" # Python 2 & 3 |
| 95 | + python: ">=3,<4" # Python 3 only |
| 96 | + |
| 97 | +# TODO |
| 98 | +# If any of the below attributes apply to your project, uncomment the corresponding lines. This is MANDATORY! |
| 99 | + |
| 100 | +attributes: |
| 101 | + - cloud # if your plugin requires access to a cloud to function |
| 102 | +# - commercial # if your plugin has a commercial aspect to it |
| 103 | +# - free-tier # if your plugin has a free tier |
| 104 | + |
| 105 | +--- |
| 106 | + |
| 107 | +Computer vision for detecting issue during 3d printing with automatic notification to Discord and Telegram and pausing the print. This plugin has minimal HW requirements. Recommended hardware is Raspberry pi 5, older version are not supported. |
0 commit comments