Home > Software engineering >  Excuse me everybody who use MFC to noise and smooth the data?
Excuse me everybody who use MFC to noise and smooth the data?

Time:09-21

Is there anyone who master the use of MFC in handling data noise and smooth, I want to use MFC to read data to calculate, but data fluctuation is too big, the need for noise reduction and smoothing,

CodePudding user response:

No problem, as long as you know the noise reduction, the algorithm principle of charged!
Can also search algorithms for noise reduction in net!

CodePudding user response:

I use the median filtering, and smoothing at 9 o 'clock, two-dimensional, effect is good, you can have a try, if it is a one dimensional data is simpler,
The source file download: http://download.csdn.net/detail/hhhh63/7373687

CodePudding user response:

Search "low-pass filter"

CodePudding user response:

Literally get a moving average, three or five points of sliding

CodePudding user response:

This has nothing to do with MFC, MFC just library, written in c + + algorithm, have various libraries available, such as the world's best GSL, or TP++ signal processing

CodePudding user response:

what great spirit in the discussion of all stripes upstairs!!!!!! Why I couldn't understand a word!!!!!!!!!!

The original poster said "data", the image data or audio or video???

CodePudding user response:

you are you sure this post really belong to a" base class "?
Why didn't I learn MFC learned this aspect of the "base"???????

CodePudding user response:

reference 1st floor flydreamGG response:
no problem, as long as you know the noise reduction, the algorithm principle of charged!
Can also search algorithms for noise reduction in net!

Eldest brother, I is to make a noise reduction of sensor measured data and smoothing processing, processing of graphics can be used?

CodePudding user response:

See this code in image smoothing and noise reduction, ask what do you mean?
dValue=https://bbs.csdn.net/topics/0.0;

for(m=0; M<3; M++)
for(n=0; N<3; N++)
dValue=https://bbs.csdn.net/topics/dValue+H [m] [n] * Value [m] [n].

dValue=https://bbs.csdn.net/topics/dValue * K;

PBits [lTotal]=int (dValue + 0.5);

CodePudding user response:

reference zhao4zhong1 reply: 3/f
search "low-pass filter"
zhao four teachers everywhere, what ever will be, the word elder brother cow force

CodePudding user response:

refer to the eighth floor fang_cong response:
Quote: refer to 1st floor flydreamGG response:

No problem, as long as you know the noise reduction, the algorithm principle of charged!
Can also search algorithms for noise reduction in net!

Eldest brother, I is to make a noise reduction of sensor measured data and smoothing processing, processing of graphics can be used?

Whether the resources, in the final analysis is the data, and is the image or video have what relation, general algorithm

CodePudding user response:

references to the tenth floor weixin_37113987 response:
Quote: refer to the third floor zhao4zhong1 response:

Search "low-pass filter"
zhao four teachers everywhere, what ever will be, the word elder brother cow force

CodePudding user response:

Histogram equalization enhancement
  • Related