Questions tagged [simplecv]

SimpleCV is an Open Source Framework for Machine Vision

SimpleCV is a Framework of several machine vision and statistical libraries whose goal is to create an Open Source Matlab-like interface for working with image processing.

Its core functions are derived from OpenCV, the Python Imaging Library (PIL), the Python Scientific Computing Library (Scipy), and PyGame.

More information is available at SimpleCV's website.

181 questions
0
votes
0 answers

Simple cv in Raspberry pi

I type following code in my raspberry pi. from SimpleCV import Camera # Initialize the camera cam = Camera() # Loop to continuously get images while True: # Get Image from camera img = cam.getImage() # Show the image img.show() But…
0
votes
1 answer

Getting error with findBlobs() in simpleCV

I am converting an OpenCV image to SimpleCV via simple Image(opencv_image) call and using Image.findBlobs() to get the blob. However, I can not get the bounding box using Blobs.getBoundingBox() as I get the error : blobs.draw() AttributeError:…
GradStudent
  • 166
  • 1
  • 3
  • 12
0
votes
0 answers

Load image using KNN in SimpleCV

This code used to train some image using KNN in simpleCV but only class 8 and 9 which extracted. The other class just show warning: WARNING: No features extracted - bailing This is the code : from SimpleCV import * image_dirs = ['N Titrasi\1%', …
0
votes
1 answer

FFT in SimpleCV?

I'm exploring SimpleCV as an imaging library in Python, and it seems pretty good. However, I'm stumped at how to perform an FFT on an image within SimpleCV. It seems I'd have to convert to an numpy array first, and then use the numpy…
Alasdair
  • 1,300
  • 4
  • 16
  • 28
0
votes
1 answer

numpy error when trying to install and run simplecv on OSX

I realize trying to remotely diagnose and resolve install issues (esp. with Python) is difficult if not futile but I've exhausted all the web suggestions I've found. OS: OSX 10.8.5 The gist is that I installed everything through Homebrew and am…
spring
  • 18,009
  • 15
  • 80
  • 160
0
votes
1 answer

Where is the Javascript library?

SimpleCV has released a Javascript library at SimpleCV.js. After looking at both their github and webpage, I still don't know how to use SimpleCV.js. How could I call on SimpleCV.js functions so that I could actually use it?
idude
  • 4,654
  • 8
  • 35
  • 49
0
votes
1 answer

meanColor() get BGR simpleCV

I know that 'meanColor()' prints the values of BGR, but how can I individually get those values? For example: img = "picture" colors = img.meanColor() print(colors) And I get something like this (30,10,40) Let say I want the 30. How can I assign…
Jcorretjer
  • 467
  • 2
  • 6
  • 24
0
votes
1 answer

Python is unable to allocate more than about 500MB while running CV program (in Ubuntu on 8GB RAM Virtualbox on Mac)

Before I more closely studied the following error message... ERROR: Traceback (most recent call last): File "polarize.py", line 13, in output = img.binarize(val).invert() File…
boulder_ruby
  • 38,457
  • 9
  • 79
  • 100
0
votes
2 answers

How can I make SimpleCV show image?

I am using the following code from Simple CV tutorial logo = Image("simplecv") logo.show() But then it shows up a small window but blank, without image. Could you help me? Thank you
Hugo
  • 1,558
  • 12
  • 35
  • 68
0
votes
1 answer

SimpleCV PIL Installation HELP NEEDED

Trying to install SimpleCV on my Mac (10.9). Using instructions from: https://github.com/sightmachine/SimpleCV/blob/develop/README.markdown#mac-os-x-106-and-above Got to the part where it says to install PIL without too many problems: "Download…
macourtney7
  • 521
  • 2
  • 10
  • 24
0
votes
0 answers

How can I load an Image that was converted into a base64 string by Image.toString?

I'm trying to get the following example to work: import SimpleCV as scv lenna = scv.Image('lenna') scv.Image(lenna.toString()).show() The above code produces an IOError as…
Louis Thibault
  • 20,240
  • 25
  • 83
  • 152
0
votes
1 answer

Detect motion within a certain region of a video

I am a biologist, and for my experimental work I want to develop a software which can detect any movement on a glass slide. I want to modify the following code so that it can detect motion within a desired radius circle around a particular xy…
user3218971
  • 547
  • 1
  • 6
  • 21
0
votes
1 answer

I want to create a software that can monitor blinking per minute with a USB camera using simpleCV and openCV .

I tried with simpleCV, got a open source code, with simple modifications i am able to write down a code which is able to detect the blinking (at a particular position of image a small change appears and gone). Now i want to calculate the blinking…
user3218971
  • 547
  • 1
  • 6
  • 21
0
votes
2 answers

How remove camera preview to raspberry pi

I installed the SimpleCv on my raspberryPi and the driver to use the camera board with it (uv4l driver) and now I'd like to play with it. When I type on simpleCV shell "Camera(0).getImage().save("foo.jpg") " , on the screen appears the camera…
0
votes
1 answer

Page not loading at localhost:8080

I'm trying to learn SimpleCV, and in it's tutorials it says to display an image in the browser, use img.show(type="browser") Whenever I do this, my browser leads me to localhost:8080, and the page will not load. How can I start a simple server in…
idude
  • 4,654
  • 8
  • 35
  • 49