Giter VIP home page Giter VIP logo

blobscanner's Introduction

	BLOBSCANNER PROCESSING LIBRARY VERSION 0.2-alpha

Blobscanner is a library for the Processing programming environment. It's used for blob detection and analysis in image and video.

CHANGES

The first thing you need to know, especially if you have already used a previous versions, is that the import name has changed from Blobscanner to blobscanner, to be more in line with the Java guidelines. The second thing is about the constructor of the Detector class, which also (for the new users) is the only class: two new constructors have been added:

	Detector(PApplet parent)	(1)  

and

	Detector(PApplet parent,int threshold)	(2)

if you use the #1 you need to call the method to set the blob's threshold value at least one time:

	setThreshold(int threshold)	(3)

The new constructors set automatically the area searched for blobs to the entire image, by default, but this behaviour can be altered by calling the following method:

	setRoi(int startx,int starty,int roiwidth,int roiheight)	(4)

#4 defines a Region Of Interest to be searched for blobs, minimizing the amount of pixels to be scanned, with a consequent increasing in the speed of execution. The method is paired with another one which revert to default the size of the ROI :

	unsetRoi()	(5)

after calling #5 the entire image is once again scanned for blob, as it was before calling #4.

The old constructor was left to provide some backward compatibility for users who decide to install the new version. It will be removed in a future release. Visit the project's site for informations and tutorials. Also from there you can download the zip archive containing executable jar file, docs and examples.

blobscanner's People

Contributors

robdanet avatar

Watchers

paling avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.