Questions tagged [detection]

Detection is a general term that describes the action of finding an object, event or state during a process.

2165 questions
0
votes
0 answers

Detect a scratch on noise image with OpenCV

I am trying to get a small scratch from the noise image as shown. It is quite noticeable by eyes, but I would like to identify it using OpenCV Python. I tried to use image blurring and subtract it from the original image, and then threshold to get a…
Xinlong Wang
  • 11
  • 1
  • 4
0
votes
1 answer

Motion Detection of an 1D Array (neural network or other options?)

I am currently developing a project for the detection of different sounds. The software should analyze an incoming sound as a wave file and recognize certain tags. For some tags, I use neural networks, which works well too. Now, however, I have a…
0
votes
1 answer

Is it possible to detect pairs of connected pixels?

I'm using OpenCV via Python 3.7. I have a following image (please take note of some red pixels on white areas): I know x and y coordinates of every red pixel in the image. I want to find all red pixels pairs that're interconnected by single white…
SagRU
  • 448
  • 4
  • 17
0
votes
2 answers

How to find whether a process is running on Windows/Linux

I want my program to be able to detect whether OBS-Studio is currently running, and if it is, perform certain functionality in my program. The problem is I can't seem to find a solution that will work on both platforms. I've found things that use…
Frontear
  • 1,150
  • 12
  • 25
0
votes
1 answer

particles presentation in the particle filter

in the particle filter algorithm, particles should present as a dots or it can be represented as rectangle boxes? in the case of rectangle boxes, how I can determine the box size? if the object is far from the camera I want to show an object with a…
0
votes
1 answer

Object recognition in 3D images

I have a 3D video that I have broken down into single images in 7 different planes. I am wondering what tools can I use for object detection. I read that OpenCV might not be the right tool for that, what could I use instead? Regards Aleksej
0
votes
1 answer

How do i make colour detection in turtle

I have a python turtle program which is displayed below. i want to be able to stop game when turtle touches black or touches line but i cant find any help online!!! import logging from datetime import datetime import time from turtle import * import…
0
votes
0 answers

Text and Checked Rectangle Detection in Android

I have a document from which I need to detect which item is checked. It is greatly appreciated if we can extract the corresponding text. Below I am attaching the sample doc. Sample Doc to scan As per above sample I need to fetch the selected item…
0
votes
0 answers

Error: nonconformant arguments (op1 is 1x3, op2 is 1x2)

I am trying to do stone detection in Octave and this is error happening: error: imarithmetics: mx_el_eq: nonconformant arguments (op1 is 1x3, op2 is 1x2) error: called from; imarithmetics at line 35 column 13; imadd at line 43 column 12; stones…
0
votes
1 answer

Does the function utils.device.checkHasPositionalTracking() still exist?

I'm getting an error on desktop chrome that utils.device.checkHasPositionalTracking() is "not a function". If it is obsolete, where can I find an updated list of utils.device methods for device detection? The official documentation seems to be…
0
votes
1 answer

How to detect only people as an object using Tensorflow API

I am using Tensorflow API to detect object, however want to detect only people in boxes. I tried solution that asked before, for instance : :How to only detect humans in object detection API Tensorflow I dropped all other class except people but it…
Ahmet Furkan
  • 84
  • 11
0
votes
1 answer

Can't get strtol() to detect overflow

This program uses a lexical scanner to classify tokens as symbol, string, decimal number, hex number,… When a "number" is detected, it is handed over to strtol() to convert it to the internal 32-bit binary value. However I can't get strtol() to…
ajlittoz
  • 414
  • 1
  • 5
  • 14
0
votes
1 answer

Dlib whl for python 3.7

I know there's a whl file for python3.6. I don't want to downgrade to 3.6 or run in a virtual environment. Soo my question is why hasn't anyone made the whl file available rather than downloading 4.4gb of ms vc that i know i won't beer using after…
0
votes
1 answer

Community detection in R thanks to the igraph package

I have a data.frame with the correlations between OTUs and genes. These correlations will allow me to construct genomes. This data.frame has 1105854 rows. var1 var2 corr 1 OTU3978 UniRef90_A0A010P3Z8 0.846 2 OTU4011…
Paillou
  • 779
  • 7
  • 16
0
votes
2 answers

How to detect letter “H” from any angle

I'm struggling to detect a specific shape in openCV using python. The specific shape is the letter "H". I have considered multiple methods of doing this. Template matching and OCR will not work at any angle so I'm thinking of using canny edge…
Axccell
  • 1
  • 3
1 2 3
99
100