# opencv-processing **Repository Path**: HunanWcc/opencv-processing ## Basic Information - **Project Name**: opencv-processing - **Description**: OpenCV for Processing. A creative coding computer vision library based on the official OpenCV Java API - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-03 - **Last Updated**: 2021-07-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## OpenCV for Processing **A Processing library for the [OpenCV](http://opencv.org/) computer vision library.** OpenCV for Processing is based on OpenCV's official Java bindings. It attempts to provide convenient wrappers for common OpenCV functions that are friendly to beginners and feel familiar to the Processing environment. See the included examples below for an overview of what's possible and links to the relevant example code. Complete documentation is available here: **[OpenCV for Processing reference](http://atduskgreg.github.io/opencv-processing/reference/)** OpenCV for Processing is based on the officially supported [OpenCV Java API](http://docs.opencv.org/java/), currently at version 2.4.5. In addition to using the wrapped functionality, you can import OpenCV modules and use any of its documented functions: [OpenCV javadocs](http://docs.opencv.org/java/). See the advanced examples (HistogramSkinDetection, DepthFromStereo, and Marker Detection) below for details. (This style of API was inspired by Kyle McDonald's [ofxCv addon](https://github.com/kylemcdonald/ofxCv) for OpenFrameworks.) Contributions welcome. ### Installing OpenCV for Processing currently supports Mac OSX, 32-bit and 64-bit Windows, 32- and 64-bit Linux. Android support is hopefully coming soon (pull requests welcome). _NB: When running on the Mac, make sure you have Processing set to 64-bit mode in the Preferences_ See [here](https://github.com/atduskgreg/opencv-processing/releases) for the latest release. ### Examples #### LiveCamTest Access a live camera and do image processing on the result, specifically face detection. Code: [LiveCamTest.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/LiveCamTest/LiveCamTest.pde) _Note: There's a bug that prevents live camera access in current versions of Processing 2.0 on machines with a Retina display._ #### FaceDetection Detect faces in images. Screen Shot 2013-04-08 at 1.22.18 PM Code: [FaceDetection.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/FaceDetection/FaceDetection.pde) #### BrightnessContrast Adjust the brightness and contrast of color and gray images. brightness and contrast Code: [BrightnessContrast.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/BrightnessContrast/BrightnessContrast.pde) #### FilterImages Basic filtering operations on images: threshold, blur, and adaptive thresholds. Screen Shot 2013-04-12 at 1.42.30 PM Code: [FilterImages.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/FilterImages/FilterImages.pde) #### FindContours Find contours in images and calculate polygon approximations of the contours (i.e., the closest straight line that fits the contour). contours with polygon approximations Code: [FindContours.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/FindContours/FindContours.pde) #### FindEdges Three different edge-detection techniques: Canny, Scharr, and Sobel. Screen Shot 2013-04-10 at 2.03.59 AM Code: [FindEdges.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/FindEdges/FindEdges.pde) #### FindLines Find straight lines in the image using Hough line detection. Hough line detection Code: [HoughLineDetection.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/HoughLineDetection/HoughLineDetection.pde) #### BrightestPoint Find the brightest point in an image. finding the brightest point Code: [BrightestPoint.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/BrightestPoint/BrightestPoint.pde) #### RegionOfInterest Assign a sub-section (or Region of Interest) of the image to be processed. Video of this example in action here: [Region of Interest demo on Vimeo](https://vimeo.com/69009345). region of interest Code: [RegionOfInterest.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/RegionOfInterest/RegionOfInterest.pde) #### ImageDiff Find the difference between two images in order to subtract the background or detect a new object in a scene. Screen Shot 2013-04-11 at 2.10.35 PM Code: [ImageDiff.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/ImageDiff/ImageDiff.pde) #### DilationAndErosion Thin (erode) and expand (dilate) an image in order to close holes. These are known as "morphological" operations. dilation and erosion Code: [DilationAndErosion.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/DilationAndErosion/DilationAndErosion.pde) #### BackgroundSubtraction Detect moving objects in a scene. Use background subtraction to distinguish background from foreground and contour tracking to track the foreground objects. Background Subtraction Code: [BackgroundSubtraction.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/BackgroundSubtraction/BackgroundSubtraction.pde) #### WorkingWithColorImages Demonstration of what you can do color images in OpenCV (threshold, blur, etc) and what you can't (lots of other operations). color operations: threshold and blur Code: [WorkingWithColorImages.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/WorkingWithColorImages/WorkingWithColorImages.pde) #### ColorChannels #### Separate a color image into red, green, blue or hue, saturation, and value channels in order to work with the channels individually. ColorChannels Code: [ColorChannels](https://github.com/atduskgreg/opencv-processing/blob/master/examples/ColorChannels/ColorChannels.pde) #### FindHistogram Demonstrates use of the findHistogram() function and the Histogram class to get and draw histograms for grayscale and individual color channels. gray, red, green, blue histograms Code: [FindHistogram.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/FindHistogram/FindHistogram.pde) #### HueRangeSelection Detect objects based on their color. Demonstrates the use of HSV color space as well as range-based image filtering. Hue-based color detection Code: [HueRangeSelection.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/HueRangeSelection/HueRangeSelection.pde) #### CalibrationDemo (in progress) An example of the process involved in calibrating a camera. Currently only detects the corners in a chessboard pattern. Screen Shot 2013-05-04 at 2.03.23 AM Code: [CalibrationDemo.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/CalibrationDemo/CalibrationDemo.pde) #### HistogramSkinDetection A more advanced example. Detecting skin in an image based on colors in a region of color space. Warning: uses un-wrapped OpenCV objects and functions. Screen Shot 2013-05-04 at 2.25.18 PM Code: [HistogramSkinDetection.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/HistogramSkinDetection/HistogramSkinDetection.pde) #### DepthFromStereo An advanced example. Calculates depth information from a pair of stereo images. Warning: uses un-wrapped OpenCV objects and functions. Screen Shot 2013-04-12 at 2.27.30 AM Code: [DepthFromStereo.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/DepthFromStereo/DepthFromStereo.pde) #### WarpPerspective (in progress) Un-distort an object that's in perspective. Coming to the real API soon. Warp Perspective Code: [WarpPerspective.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/WarpPerspective/WarpPerspective.pde) #### MarkerDetection An in-depth advanced example. Detect a CV marker in an image, warp perspective, and detect the number stored in the marker. Many steps in the code. Uses many un-wrapped OpenCV objects and functions. Screen Shot 2013-04-12 at 12.20.17 AM Code: [MarkerDetection.pde](https://github.com/atduskgreg/opencv-processing/blob/master/examples/MarkerDetection/MarkerDetection.pde) #### MorphologyOperations Open and close an image, or do more complicated morphological transformations. Morphology operations Code: [MorphologyOperations.pde](examples/MorphologyOperations/MorphologyOperations.pde)