Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
25 views

I am trying to build opencv from source to enable GStreamer support. I have followed this instructions here, but an error occurred. More specifically, the error occurred in this step: make -j$(nproc) ...
0 votes
0 answers
58 views

I would like to silence OpenCV errors that occur while attempting to read an image that it does not support, example HEIC. I have tried setting the OPENCV_LOG_LEVEL environment variable as well as the ...
0 votes
0 answers
25 views

I want to use opencv in node. Found @techstark/opencv-js and looks promising, but I cannot run even a simple example. I've installed the examples from https://github.com/TechStark/opencv-js-examples. ...
1 vote
0 answers
54 views

I’m trying to make a script in python that restream an RTSP feed that has been processed in OpenCV (where I overlay the current date and time on each frame). After processing, I use GStreamer to ...
-1 votes
0 answers
63 views

Trying to build a mini face recognition project from a set of pictures in a folder When trying to use LBPH algorithm to do so using: recognizer = cv.face.LBPHFaceRecognizer() I get: "Unknown C++...
3 votes
0 answers
573 views

I'm using OpenCV 3.1.0 to fit a Gaussian Mixture Model to two-class data using EM. The samples are labeled, so I provide the class means and covariances during training by using EM::trainE. When I ...
3 votes
0 answers
1k views

I am trying to stitch a panorama using mobile phone camera with an attachable 170 degree wide angle lens. The resulting photo is distorted (fisheye). I understand that to stitch these photos using ...
7 votes
0 answers
225 views

I am working on an image stitching pipeline for video feeds but am still missing some key insights. I am for example using Szeliski's Image Alignment and Stitching: A Tutorial for a general ...
0 votes
0 answers
53 views

I've compiled opencv with cuda support and am trying to use some cuda functions - to that end I'm trying the following test: import cv2 if cv2.cuda.getCudaEnabledDeviceCount() > 0: print("...
2 votes
0 answers
893 views

In OpenCV we can use features to detection objects, and there are features which are all translation-invariant and also: Which scale-invariant and rotate-invariant: SIFT, SURF, BRISK, FREAK, STAR And ...
0 votes
0 answers
93 views

I am new to OpenCV with linux. I am currently working on tube rack's bounding detection. But as you can see, one of rack's bounding is blurred by shadow. Despite having used histogram equalization to ...
1 vote
0 answers
69 views

I want to have intellisense for opencv.js inside VS Code when I call it from a JavaScript file, but when I use import "path/opencv.js" or import cv from "path/opencv.js", I can't ...
0 votes
0 answers
52 views

I am trying to compile a simple application that uses OpenCV in Linux: The CMAkeFile.txt is as follow: cmake_minimum_required(VERSION 3.29) # Enable vcpkg manifest mode if(DEFINED ENV{VCPKG_ROOT}) ...
1 vote
0 answers
88 views

What i am Trying to do? I want to access the ip cameras and add a face recognition model to the live feed and display it to the web browser frontend for the ease of access this is the main concern, ...
1 vote
0 answers
37 views

I use Python 3.10 and OpenCV, building from sources with CUDA enabled and it worked. Then I try to build the .exe using Pyinstaller this also worked. Problem: When I try to run the EXE file, the ...
0 votes
0 answers
150 views

When I try to detect my camera using python -m lerobot.find_cameras opencv I get a ton of errors like global obsensor_uvc_stream_channel.cpp:158 cv::obsensor::getStreamChannelGroup Camera index out of ...
0 votes
0 answers
289 views

I'm trying to simple load an image (TIFF) and display a pixel value. If I open the image using ImageJ the values are 32-bit float. But opening the same image using opencv I get really strange float ...
0 votes
0 answers
75 views

I'm trying to move some computer vision tasks to tensorflow. The most intensive ops are convolutions, like GaussianBlur. The timings I get using timeit suggest that the GPU equivalent is >10 x ...
0 votes
0 answers
115 views

I am new to OpenCV and I am trying to make this output from that satellite image : But I am running into a couple issues. I first thought about using a hough transform. But it started drawing lines ...
3 votes
0 answers
2k views

The actual Question: Currently opencv is used to write video frames in a single file. Can you append the audio as well directly or is there some other way so you can create small video snippets which ...
0 votes
0 answers
75 views

I've been looking to find a way of removing jitter from a project involving tracking two aruco marker boards. The camera is static and I have two marker boards moving with respect to one another. I ...
1 vote
0 answers
307 views

I want to use hog detector in order to know if a ROI is a person or not, I already coded a filtering technique allowing me to select ROIs that can contain a person. for instance this is what I'm doing:...
1 vote
0 answers
1k views

I'm playing around with Vision Programming Interface (VPI) and trying to bend images. I came across this Lens Distortion Correction example (https://docs.nvidia.com/vpi/algo_ldc.html) and added some ...
1 vote
0 answers
20k views

My python version = 3.10.0. My Visual Studio code version = 1.61.0 I also tried downloading OpenCV (https://sourceforge.net/projects/opencvlibrary/files/4.5.4/opencv-4.5.4-vc14_vc15.exe/download) and ...
1 vote
0 answers
83 views

I'm trying to use OpenCV's nonfree functionalities (like SIFT/SURF) in Java by compiling from source, but I'm encountering a DLL loading error in IntelliJ. Here's my setup: I'm using windows 11 24h2 ...

1
2 3 4 5
333