Questions tagged [threshold]

The starting point for a new state.

715 questions
0
votes
1 answer

Applying Threshold to Matrix Within Cell Array

I have a cell array called output. Each cell within output contains a 1024 x 1024 matrix. I would like to threshold each matrix so that elements below a given value are set to NaN. I tried using: output(output < 100000) = NaN; However, I feel that…
itend
  • 63
  • 4
0
votes
1 answer

LabVIEW automatic threshold

Automatic threshold using inter-class variance is described in the NI vision help as shown in figure below. My question is what is the difference between the last two equations; they are exactly the same. what do they indicate ? snap from the…
0
votes
1 answer

Select and plot value above a threshold

I have a plot in which there are a few noise components. I am planning to select data from that plot preferably above a threshold in my case I am planning to keep it at 2.009 on the Y axis. And plot the lines going only above it. And if anything is…
Matlaber
  • 35
  • 7
0
votes
1 answer

How to aggregate POSIXlt by day to find daily peaks?

I have a variant of this question: Count values in a data set that exceed a threshold in R: I have some temperature measurement at almost random time intervals. I want to find out on which (how many) days a specific threshold value had been exceeded…
U. Windl
  • 3,480
  • 26
  • 54
0
votes
2 answers

powershell if -gt script not working correctly results always in above limit

please help me, my powershell script somehow doesnt see the correct value and always reports to the email adress even if the space is less then the threshold. $PSEmailServer = 'spamtitan.domain.nl' $username = [Environment]::UserName…
IIIdefconIII
  • 353
  • 2
  • 5
  • 13
0
votes
1 answer

Python OpenCV 3.x use threshold in LBHP algorithm

I wrote a Face detection script with the LBPH algorithm (in Python) cv2.face.createLBPHFaceRecognizer(). My problem is any other person that the algorithm is not trained on, returns me my number. (If it is me it returns 1 but if it's an other person…
Flajt
  • 17
  • 9
0
votes
1 answer

Thresholding in luminance image

I have an image that contains an illuminate. First I crop the area which I want to process then convert it into the binary image. I use Otsu's thresholding, but it gives a bad result for this problem. I have to try to use adaptive threshold, but…
Hendra
  • 21
  • 1
  • 9
0
votes
1 answer

Need help Threshold Image in JS

i have the next codepen which works good:
var width, height var step = 0; var canvas =…
Lenny Lip
  • 13
  • 1
  • 5
0
votes
0 answers

MATLAB transfer function which use custom threshold?

Is there any MATLAB transfer(activation) function which its threshold could be set in desired value? (which mean we could for example set its threshold to a value, so if sum of weighted inputs was greater than a, neuron will fire and in other cases,…
0
votes
1 answer

How to set the max requests that the snmp agent can respond in 1 min.

i want to restrict the number of requests that SNMP agent accepts in 1 min. for example , the SNMP agent can respond the requests from different management station, and i want to set the max number of the requests in 1 min. if in 1 min, the agent…
arianwang
  • 1
  • 1
0
votes
0 answers

Best approach to eliminate oversegmentation in Watershed algorithm to enhance edges?

I am trying to implement the Watershed algorithm for image segmentation. I applied in the pre-processing phase Median filter and Morphological Gradient, but the results are way too over segmented as seen in the pictures above. After some research on…
0
votes
1 answer

Elkstack Logstash - How to send a threshold alert by email

I need some help with Logstash. I currently have the below Logstash config which works. When the [message] tag has "Token validation failed" in it it sends an email out saying auth issue. input { tcp { codec => "json" port => 5144 …
user3290171
  • 121
  • 1
  • 3
  • 19
0
votes
1 answer

adaptiveThreshold getting blank (full white) image

I want to apply adaptiveThreshold using open cv library to my bitmap image, but once i do with following code, it shows blank (full white) image, please help me to resolve it. following is code: Mat grayMat = imread(getImageUri(this,…
0
votes
0 answers

Set the Threshold value in the Output from the FCN

I've been trying to use FCN to segment medical images. In the Evaluation part, I need to transfer the output of the network into a binary matrix with a threshold. I tried to use cv2.threshold pred_bin =…
sean shen
  • 1
  • 1
0
votes
1 answer

Matlab picture intensity level adjustment

I have a specific question to ask about the intensity adjustment for image processing. I need high constraint value to find small gaps in the image which is shown as a red circle in the image. I used a manual threshold value 0.99 to convert the…
Chen
  • 13
  • 5