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
1 answer

EasyGUI and SimpleCV- TypeError: 'module' object is not callable

I am trying to make GUI for simpleCV program. I am using easyGUI to do that. Here is my code: from easygui import * from SimpleCV import * from cv2 import * from cv import * from PIL import * import time import sys while True: msgbox("""Welcome…
Asia Saeed
  • 122
  • 1
  • 12
0
votes
1 answer

Hough Transform SimpleCV Feature Extractor

I'm trying to build a new SimpleCV FeatureExtractor for openCV's Hough Circle Transform but I'm running into an error during my machine learning script's training phase. I've provided the error below. It is raised by the Orange machine learning…
Sid
  • 1,144
  • 10
  • 21
0
votes
1 answer

Pygame.camera in wxpython

I tried to Pygame.camera embedded in wxPython. after some searching, I found out It can do with SDL_WINDOWID. but I conldn't make it The image is my Goal(what i want to make) http://kalten.tistory.com/entry/wxPython Can you help me? I need just…
LEELOLEE
  • 83
  • 1
  • 8
0
votes
1 answer

Simplecv and Android app

I want to make an android app that makes beautiful effects on images using SimpleCV. I found this app http://github.com/victsou/simplecv-mobile-camera I have windows, and I have installed tornado in my laptop. when I try to test the app on my…
Asia Saeed
  • 122
  • 1
  • 12
0
votes
0 answers

SimpleCV on OS X 10.10.1 Import Error

I installed SimpleCV on my Mac OS X 10.10.1 Yosemite , $ pip…
0
votes
1 answer

simpleCV in python - show() function displays tiny image on screen

I have followed a basic youtube tutorial to detect white objects with the camera on a Raspberry Pi using the simpleCV framework, coded in python. I have the code running fine but when it displays on screen, its tiny. Approx 60px square. I have…
0
votes
1 answer

Error import SimpleCV in localhost

This has bothered me all day and I haven't found solution online import SimpleCV is working when I run script.py by itself, The problem is when I'm trying to call the script.py from a form in localhost (apache) I get import:
spades
  • 1
0
votes
1 answer

Python No module named, even though the module does appear

Good day. I've been using pip install simplecv to install the module simplecv. I know the module was properly installed and when I'm printing list of the modules using #!/usr/bin/env python2.7 import pip installed_packages =…
shultz
  • 2,543
  • 3
  • 20
  • 23
0
votes
1 answer

how fft (fast Fourier transform) works

I am a learner of python and developing a small project related to image analysis, to learn the concept I tried to understand various python codes, but this time I sucked and can any one explain this code ? Especially the FFT part ? class…
user3218971
  • 547
  • 1
  • 6
  • 21
0
votes
1 answer

SimpleCV not working in PYCharm

I installed the superpack of SimpleCV and PyCharm. I then install the package from PyCharm for SimpleCV, and it's successful. But when I run the sample program from the official website and I get the following message: ImportError: Cannot load…
coding4fun
  • 3,485
  • 1
  • 16
  • 28
0
votes
1 answer

Ensuring continuously updated image file is safe to open

So here's the situation: I've got two Python programs, one to control a uEye camera module, making use of the SimpleCV library, and another to do a bit of analysis on the image. The reason for them being separate is that SimpleCV is 2.7, while a few…
Horizon
  • 21
  • 1
0
votes
0 answers

Frame-rate of pre-recorded video

I have a video stored on my computer. I am doing some processing on this video. When I query the frame rate like this: frameRate=cap.get(5) it gives me 25, which is the frame rate of the original stored video, not the rate at which the frames…
GradStudent
  • 166
  • 1
  • 3
  • 12
0
votes
0 answers

Speed of detected contours/their centroids?

Is there any available material that specifies how I can find the speed of detected contours/their centroids? I am using the lk_tracker.py example included in the opencv samples. I don't really have a clear idea of the internal workings of the…
GradStudent
  • 166
  • 1
  • 3
  • 12
0
votes
1 answer

SimpleCV: Removing lines I previously drew?

I'm trying to do edge detection with SimpleCV on a RasPi by first finding all the lines in an image and then filtering items set based on location, intersect angle and color. I have the filtering figured out, but am having difficulty displaying the…
Jwhales
  • 11
  • 1
0
votes
1 answer

Find Camera id in Simple cv?

I want to use two cameras for my raspberry pi. So I want to know camera index number of each cameras. So what is the way to find the camera index no in raspbian OS?(The index numbers use to make camera object in Simple CV)