Questions tagged [opencv3.0]

OpenCV (Open Source Computer Vision) is a library for real time computer vision. (This tag is for questions about OpenCV 3.0. Use [opencv] for general questions.)

OpenCV is an open source computer vision library

Version 3.0 released in June 2015. Its documentation can be found here.

For more information, see .

2111 questions
0
votes
0 answers

How to make use of OpenCV source codes instead of shared libraries

I have a project at hand which I want to use one of the opencv modules (specifically dnn). Instead of building the dnn module I want to use the source code of this modules in my project. by doing so, I can change the source code live and see the…
PsP
  • 696
  • 3
  • 10
  • 34
0
votes
1 answer

opencv blob detection, missing some blobs

import cv2 import numpy as np im_m = cv2.imread("primary.png", cv2.IMREAD_GRAYSCALE) # 50, 130 # Otsu's thresholding after Gaussian filtering blur = cv2.GaussianBlur(im_m,(25,25),0) #(thresh, im2) =…
user2538498
0
votes
2 answers

python flask not reading image from ajax POST

I have an ajax post posting and image like so, // fileData is canvas.toDataURL(fileType); $.ajax({ type: 'POST', url: 'http://ip/api', data: fileData, contentType: false, processData: false, mimeType:"multipart/form-data", …
Pavan K
  • 4,085
  • 8
  • 41
  • 72
0
votes
0 answers

Multi colour detection does not show centroid more than 1 object, Only show the centroid of Image which had largest pixel

I am still new to OpenCV, i am trying to detect object of multiple colour as well as center of the object. The color i need to detect is Red, Blue and Yellow. My program able to detect different colour, but it can't detect centroid of the same…
Sky
  • 23
  • 1
  • 9
0
votes
0 answers

Human Detection using Hog descriptors using opencv in java

I have successfully read the video from webcam using opencv. Now i want to detect humans from webcam using Hogdescriptors. I have read many opencv tutorials but could not get anything from it and not able to implement it,can any one help me to…
omkarlanghe
  • 37
  • 1
  • 8
0
votes
0 answers

Apply some Filters to an image of car using Open CV C++

am trying to apply some pre process functions to the image of cars for my graduation project License plate recognition but i face an issue the picture looks poor The Orignial image enter image description here 1- Convert to Grayscale. 2- Gaussian…
0
votes
1 answer

Use opencv in python idle

I installed opencv in python3 using pip. It runs well in terminal, but when I try to run it in idle, it cannot import cv2. What could be the solution? I am using vim as my python idle.
Monojit Sarkar
  • 657
  • 1
  • 5
  • 15
0
votes
1 answer

What is the value of the BGR in OpenCV?

I know black is [0,0,0],and white is [255,255,255]. Red is [0,0,255] ,green is [0,255,0] ,blue is [255,0,0]. How do other colors show?
user9147145
0
votes
2 answers

How do I get Microsoft Visual Studio 2017 to link to the OpenCV 3.4 libraries?

I have downloaded: Microsoft Visual Studio 2017 (14.0) Microsoft Visual C++ 2017 x64 (14.12.25810) And OpenCV 3.4 I try to get this stackoverflow program to…
0
votes
1 answer

How to generate a mp4(not a avi) file from a number of frames using Python OpenCV?

I am unable to generate a mp4 file from a number of frames, although I can generate avi file. How to get mp4 file instead of avi file # Define the codec and create VideoWriter object.The output is stored in 'outpy.avi' file. import cv2 out =…
0
votes
0 answers

Use of different header and same image data in OpenCV C++

I am reading openCV documentation. I read this paragraph: The idea is that each Mat object has its own header, however the matrix may be shared between two instance of them by having their matrix pointers point to the same address. Moreover, the…
Bhawan
  • 2,441
  • 3
  • 22
  • 47
0
votes
1 answer

How to compile OpenCV3 using MinGW

I am trying to compile OpenCV3 and put it into Qt project because Qt officially provides MinGW Version, so I didn't use MinGW-w64. I enabled ENABLE_CXX11 and disabled ENABLE_PRECOMPILED_HEADERS in CMake. Now the problem is MinGW does not contain…
JustWe
  • 4,250
  • 3
  • 39
  • 90
0
votes
0 answers

OpenCV 3 and threading on Ubuntu

Can OpenCV be made to work with the following code, modified from here: #include #include #include #include using namespace cv; using namespace std; void…
Ken Y-N
  • 14,644
  • 21
  • 71
  • 114
0
votes
2 answers

Use IP camera with OPEN CV without internet connection (direct connection to pc)

I am sorry, this might not be the correct platform to ask this kind of question but I couldn't think of any other place . I for one of my project I need to capture some video footage from an outdoor camera using open cv. Actually, its a part of a…
ArkanSaaS
  • 193
  • 2
  • 15
0
votes
0 answers

Getting error in drawing epipolar line from fundamental matrix?

I'm getting an error in drawing epipolar line from fundamental matrix. Snap of my code is: cv::Mat fundamental = cv::findFundamentalMat( cv::Mat(img_corners), // points in first image cv::Mat(prevImg_corners), // points in second…
1 2 3
99
100