123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133 |
- #pragma once
- #include "stdafx.h"
-
- #include <opencv2/core/core.hpp>
- #include <opencv2/highgui/highgui.hpp>
- #include <opencv2/opencv.hpp>
- #include "OTSImageProcess.h"
- #include "OTSImageProcessParam.h"
- #include <OTSFieldData.h>
- #include "../OTSLog/COTSUtilityDllFunExport.h"
- #include "FieldMgr.h"
- using namespace cv;
- using namespace std;
- namespace OTSIMGPROC
- {
- namespace
- {
-
- /***** 求两点间距离*****/
- float getDistance(Point pointO, Point pointA)
- {
- float distance;
- distance = powf((pointO.x - pointA.x), 2) + powf((pointO.y - pointA.y), 2);
- distance = sqrtf(distance);
- return distance;
- }
- /***** 点到直线的距离:P到AB的距离*****/
- //P为线外一点,AB为线段两个端点
- float getDist_P2L(Point pointP, Point pointA, Point pointB)
- {
- //求直线方程
- int A = 0, B = 0, C = 0;
- A = pointA.y - pointB.y;
- B = pointB.x - pointA.x;
- C = pointA.x*pointB.y - pointA.y*pointB.x;
- //代入点到直线距离公式
- float distance = 0;
- distance = ((float)abs(A*pointP.x + B * pointP.y + C)) / ((float)sqrtf(A*A + B * B));
- return distance;
- }
- int Side(Point P1, Point P2, Point point)
- {
- /*Point P1 = line.P1;
- Point P2 = line.P2;*/
- return ((P2.y - P1.y) * point.x + (P1.x - P2.x) * point.y + (P2.x*P1.y - P1.x*P2.y));
- }
- void FindInnerCircleInContour(vector<Point> contour, Point ¢er, int &radius)
- {
- Rect r = boundingRect(contour);
- int nL = r.x, nR = r.br().x; //轮廓左右边界
- int nT = r.y, nB = r.br().y; //轮廓上下边界
- double dist = 0;
- double maxdist = 0;
- for (int i = nL; i < nR; i++) //列
- {
- for (int j = nT; j < nB; j++) //行
- {
- //计算轮廓内部各点到最近轮廓点的距离
- dist = pointPolygonTest(contour, Point(i, j), true);
- if (dist > maxdist)
- {
- //求最大距离,只有轮廓最中心的点才距离最大
- maxdist = dist;
- center = Point(i, j);
- }
- }
- }
- radius = maxdist; //圆半径
- }
- BOOL GetParticleAverageChord(std::vector<Point> listEdge, double a_PixelSize, double &dPartFTD)
- {
- // safety check
- double nx = 0, ny = 0;
- Moments mu;
- mu = moments(listEdge, false);
- nx = mu.m10 / mu.m00;
- ny = mu.m01 / mu.m00;
- //circle(cvcopyImg, Point(nx, ny), 1, (255), 1);
- Point ptCenter = Point((int)nx, (int)ny);
- // coordinate transformation
- Point ptPosition;
- int radiusNum = 0;
- // get ferret diameter
- double sumFltDiameter = 0;
- int interval;
- int edgePointNum = listEdge.size();
- if (edgePointNum > 100)
- {
- interval = edgePointNum / 100;//get one line per 10 degree aproxemately
- }
- else
- {
- interval = 1;
- }
- for (int i = 0; i < edgePointNum; i++)
- {
- Point pt = listEdge[i];
- ptPosition.x = abs(pt.x - ptCenter.x);
- ptPosition.y = abs(pt.y - ptCenter.y);
- if (i % interval == 0)//calculate one line per 10 point ,so to speed up.don't calculate all the diameter.
- {
- double r1 = sqrt(pow(ptPosition.x, 2) + pow(ptPosition.y, 2));
- sumFltDiameter += r1;
- radiusNum += 1;
- //line(cvImageData, ptCenter, pt, Scalar(nBlackColor), nThickness, nLineType);
- }
- }
- if (radiusNum == 0)
- {
- dPartFTD = 0;
- }
- else
- {
- dPartFTD = a_PixelSize * sumFltDiameter / radiusNum * 2;
- }
- //imshow("feret center", cvImageData);
- return TRUE;
- }
- void linearSmooth5(WORD wordIn[], WORD wordOut[], int N = 255)//smooth algorithm
- {
- double in[256];
- double out[256];
- double smoothCurveData[256];
- for (int i = 0; i < 256; i++)
- {
- in[i] = (double)wordIn[i];
- }
- int i;
- if (N < 5)
- {
- for (i = 0; i <= N - 1; i++)
- {
- out[i] = in[i];
- }
- }
- else
- {
- out[0] = (3.0 * in[0] + 2.0 * in[1] + in[2] - in[4]) / 5.0;
- out[1] = (4.0 * in[0] + 3.0 * in[1] + 2 * in[2] + in[3]) / 10.0;
- for (i = 2; i <= N - 3; i++)
- {
- out[i] = (in[i - 2] + in[i - 1] + in[i] + in[i + 1] + in[i + 2]) / 5.0;
- }
- out[N - 2] = (4.0 * in[N - 1] + 3.0 * in[N - 2] + 2 * in[N - 3] + in[N - 4]) / 10.0;
- out[N - 1] = (3.0 * in[N - 1] + 2.0 * in[N - 2] + in[N - 3] - in[N - 5]) / 5.0;
- }
- for (int i = 0; i < N; i++)
- {
- wordOut[i] = (WORD)out[i];
- }
- }
- }
- COTSImageProcess::COTSImageProcess()
- {
- }
- COTSImageProcess::~COTSImageProcess()
- {
- }
- // use verticl line of 3 pixel to erode a image
- void COTSImageProcess::BErodeVertical3(LPBYTE source, LPBYTE target, WORD rows, WORD columns)
- {
- WORD x, y, wcounts;
- if (rows <= 2 || columns <= 2)return;
- // top line
- for (x = 0; x < columns; x++)
- {
- *(target + x) = 0;
- }
- // bottom line
- for (x = 0; x < columns; x++)
- {
- *(target + (DWORD)(rows - 1)*columns + x) = 0;
- }
- for (y = 1; y<rows - 1; y++)
- {
- for (x = 0; x<columns; x++)
- {
- if (*(source + (DWORD)y*columns + x) == 0)
- {
- *(target + (DWORD)y*columns + x) = 0;
- continue;
- }
- wcounts = 0;
- if (*(source + (DWORD)(y - 1)*columns + x) == 255)
- {
- wcounts++;
- }
- if (*(source + (DWORD)(y + 1)*columns + x) == 255)
- {
- wcounts++;
- }
- if (wcounts == 2) *(target + (DWORD)y*columns + x) = 255;
- else *(target + (DWORD)y*columns + x) = 0;
- }
- }
- }
- // use left 45 degree line of 3 pixel to erode a image
- void COTSImageProcess::BErodeLeft45Degree3(LPBYTE source, LPBYTE target, WORD rows, WORD columns)
- {
- WORD x, y, wcounts;
- if (rows <= 2 || columns <= 2)return;
- // top line
- for (x = 0; x < columns; x++)
- {
- *(target + x) = 0;
- }
- // bottom line
- for (x = 0; x < columns; x++)
- {
- *(target + (DWORD)(rows - 1)*columns + x) = 0;
- }
- // left line
- for (y = 0; y<rows; y++)
- {
- *(target + (DWORD)y*columns) = 0;
- }
- // right line
- for (y = 0; y<rows; y++)
- {
- *(target + (DWORD)y*columns + columns - 1) = 0;
- }
- for (y = 1; y < rows - 1; y++)
- {
- for (x = 1; x < columns - 1; x++)
- {
- if (*(source + (DWORD)y*columns + x) == 0)
- {
- *(target + (DWORD)y*columns + x) = 0;
- continue;
- }
- wcounts = 0;
- if (*(source + (DWORD)(y - 1)*columns + x - 1) == 255)
- {
- wcounts++;
- }
- if (*(source + (DWORD)(y + 1)*columns + x + 1) == 255)
- {
- wcounts++;
- }
- if (wcounts == 2) *(target + (DWORD)y*columns + x) = 255;
- else *(target + (DWORD)y*columns + x) = 0;
- }
- }
-
- }
- // use horizoontal line of 3 pixel to erode a image
- void COTSImageProcess::BErodeHorizontal3(LPBYTE source, LPBYTE target, WORD rows, WORD columns)
- {
- WORD x, y, wcounts;
- if (rows <= 2 || columns <= 2)return;
- // left line
- for (y = 0; y<rows; y++)
- {
- *(target + (DWORD)y*columns) = 0;
- }
- // right line
- for (y = 0; y<rows; y++)
- {
- *(target + (DWORD)y*columns + columns - 1) = 0;
- }
- for (y = 0; y<rows; y++)
- {
- for (x = 1; x<columns - 1; x++)
- {
- if (*(source + (DWORD)y*columns + x) == 0)
- {
- *(target + (DWORD)y*columns + x) = 0;
- continue;
- }
- wcounts = 0;
- if (*(source + (DWORD)y*columns + x - 1) == 255)
- {
- wcounts++;
- }
- if (*(source + (DWORD)y*columns + x + 1) == 255)
- {
- wcounts++;
- }
- if (wcounts == 2) *(target + (DWORD)y*columns + x) = 255;
- else *(target + (DWORD)y*columns + x) = 0;
- }
- }
- }
- // use right 45 degree line of 3 pixel to erode a image
- void COTSImageProcess::BErodeRight45Degree3(LPBYTE source, LPBYTE target, WORD rows, WORD columns)
- {
- WORD x, y, wcounts;
- if (rows <= 2 || columns <= 2)return;
- // top line
- for (x = 0; x < columns; x++)
- {
- *(target + x) = 0;
- }
- // bottom line
- for (x = 0; x < columns; x++)
- {
- *(target + (DWORD)(rows - 1)*columns + x) = 0;
- }
- // left line
- for (y = 0; y<rows; y++)
- {
- *(target + (DWORD)y*columns) = 0;
- }
- // right line
- for (y = 0; y<rows; y++)
- {
- *(target + (DWORD)y*columns + columns - 1) = 0;
- }
- for (y = 1; y<rows - 1; y++)
- {
- for (x = 1; x<columns - 1; x++)
- {
- if (*(source + (DWORD)y*columns + x) == 0)
- {
- *(target + (DWORD)y*columns + x) = 0;
- continue;
- }
- wcounts = 0;
- if (*(source + (DWORD)(y - 1)*columns + x + 1) == 255)
- {
- wcounts++;
- }
- if (*(source + (DWORD)(y + 1)*columns + x - 1) == 255)
- {
- wcounts++;
- }
- if (wcounts == 2) *(target + (DWORD)y*columns + x) = 255;
- else *(target + (DWORD)y*columns + x) = 0;
- }
- }
-
- }
- void COTSImageProcess::BDilateVertical3(LPBYTE source, LPBYTE target, WORD rows, WORD columns)
- {
- WORD x, y;
- if (rows <= 2 || columns <= 2)return;
- // top line
- for (x = 0; x<columns; x++)
- {
- if (*(source + x) != 0)
- {
- *(target + x) = 0xff;
- }
- }
- // bottom line
- for (x = 0; x<columns; x++)
- {
- if (*(source + (DWORD)(rows - 1)*columns + x) != 0)
- {
- *(target + (DWORD)(rows - 1)*columns + x) = 0xff;
- }
- }
- for (y = 1; y<rows - 1; y++)
- {
- for (x = 1; x<columns - 1; x++)
- {
- if (*(source + (DWORD)y*columns + x) != 0)
- {
- *(target + (DWORD)y*columns + x) = 0xff;
- *(target + (DWORD)(y - 1)*columns + x) = 255;
- *(target + (DWORD)(y + 1)*columns + x) = 255;
- }
- else *(target + (DWORD)y*columns + x) = 0;
- }
- }
- }
- void COTSImageProcess::BDilateLeft45Degree3(LPBYTE source, LPBYTE target, WORD rows, WORD columns)
- {
- WORD x, y;
- if (rows <= 2 || columns <= 2)return;
- // top line
- for (x = 0; x<columns; x++)
- {
- if (*(source + x) != 0)
- {
- *(target + x) = 0xff;
- }
- }
- // bottom line
- for (x = 0; x<columns; x++)
- {
- if (*(source + (DWORD)(rows - 1)*columns + x) != 0)
- {
- *(target + (DWORD)(rows - 1)*columns + x) = 0xff;
- }
- }
- // left line
- for (y = 0; y<rows; y++)
- {
- if (*(source + (DWORD)y*columns) != 0)
- {
- *(target + (DWORD)y*columns) = 0xff;
- }
- }
- // right line
- for (y = 0; y<rows; y++)
- {
- if (*(source + (DWORD)y*columns + columns - 1) != 0)
- {
- *(target + (DWORD)y*columns + columns - 1) = 0xff;
- }
- }
- for (y = 1; y<rows - 1; y++)
- {
- for (x = 1; x<columns - 1; x++)
- {
- if (*(source + (DWORD)y*columns + x) != 0)
- {
- *(target + (DWORD)y*columns + x) = 0xff;
- *(target + (DWORD)(y - 1)*columns + x - 1) = 255;
- *(target + (DWORD)(y + 1)*columns + x + 1) = 255;
- }
- else *(target + (DWORD)y*columns + x) = 0;
- }
- }
- }
- void COTSImageProcess::BDilateHorizontal3(LPBYTE source, LPBYTE target, WORD rows, WORD columns)
- {
- WORD x, y;
- if (rows <= 2 || columns <= 2)return;
- // left line
- for (y = 0; y<rows; y++)
- {
- if (*(source + (DWORD)y*columns) != 0)
- {
- *(target + (DWORD)y*columns) = 0xff;
- }
- }
- // right line
- for (y = 0; y<rows; y++)
- {
- if (*(source + (DWORD)y*columns + columns - 1) != 0)
- {
- *(target + (DWORD)y*columns + columns - 1) = 0xff;
- }
- }
- for (y = 1; y<rows - 1; y++)
- {
- for (x = 1; x<columns - 1; x++)
- {
- if (*(source + (DWORD)y*columns + x) != 0)
- {
- *(target + (DWORD)y*columns + x) = 0xff;
- *(target + (DWORD)y*columns + x - 1) = 255;
- *(target + (DWORD)y*columns + x + 1) = 255;
- }
- else *(target + (DWORD)y*columns + x) = 0;
- }
- }
- }
- void COTSImageProcess::BDilateRight45Degree3(LPBYTE source, LPBYTE target, WORD rows, WORD columns)
- {
- WORD x, y;
- if (rows <= 2 || columns <= 2)return;
- // top line
- for (x = 0; x<columns; x++)
- {
- if (*(source + x) != 0)
- {
- *(target + x) = 0xff;
- }
- }
- // bottom line
- for (x = 0; x<columns; x++)
- {
- if (*(source + (DWORD)(rows - 1)*columns + x) != 0)
- {
- *(target + (DWORD)(rows - 1)*columns + x) = 0xff;
- }
- }
- // left line
- for (y = 0; y<rows; y++)
- {
- if (*(source + (DWORD)y*columns) != 0)
- {
- *(target + (DWORD)y*columns) = 0xff;
- }
- }
- // right line
- for (y = 0; y<rows; y++)
- {
- if (*(source + (DWORD)y*columns + columns - 1) != 0)
- {
- *(target + (DWORD)y*columns + columns - 1) = 0xff;
- }
- }
- for (y = 1; y<rows - 1; y++)
- {
- for (x = 1; x<columns - 1; x++)
- {
- if (*(source + (DWORD)y*columns + x) != 0)
- {
- *(target + (DWORD)y*columns + x) = 0xff;
- *(target + (DWORD)(y - 1)*columns + x + 1) = 255;
- *(target + (DWORD)(y + 1)*columns + x - 1) = 255;
- }
- else *(target + (DWORD)y*columns + x) = 0;
- }
- }
- }
- void COTSImageProcess::BErode3(LPBYTE source, LPBYTE target, WORD wDegree, WORD rows, WORD columns)
- {
- WORD x, y, i, j, wcounts;
- if (rows == 1 || columns == 1)return;
- for (y = 1; y<rows - 1; y++)
- {
- for (x = 1; x<columns - 1; x++)
- {
- if (*(source + (DWORD)y*columns + x) == 0)
- {
- *(target + (DWORD)y*columns + x) = 0;
- continue;
- }
- wcounts = 0;
- for (i = (WORD)(y - 1); i <= (WORD)(y + 1); i++)
- {
- for (j = (WORD)(x - 1); j <= (WORD)(x + 1); j++)
- {
- if (*(source + (DWORD)i*columns + j) == 0)
- {
- wcounts++;
- }
- }
- }
- if (wcounts >= wDegree) *(target + (DWORD)y*columns + x) = 0;
- else *(target + (DWORD)y*columns + x) = 0xff;
- }
- }
- // top line
- for (x = 1; x<columns - (WORD)1; x++)
- {
- if (*(source + x) == 0)
- {
- *(target + x) = 0;
- continue;
- }
- wcounts = 0;
- for (i = 0; i <= 1; i++)
- {
- for (j = (WORD)(x - 1); j <= (WORD)(x + 1); j++)
- {
- if (*(source + (DWORD)i*columns + j) == 0) wcounts++;
- }
- }
- if (wcounts >= wDegree * 5 / 8) *(target + x) = 0;
- else *(target + x) = 0xff;
- }
- // bottom line
- for (x = 1; x<columns - 1; x++)
- {
- if (*(source + (DWORD)(rows - 1)*columns + x) == 0)
- {
- *(target + (DWORD)(rows - 1)*columns + x) = 0;
- continue;
- }
- wcounts = 0;
- for (i = (WORD)(rows - 2); i <= (WORD)(rows - 1); i++)
- {
- for (j = (WORD)(x - 1); j <= (WORD)(x + 1); j++)
- {
- if (*(source + (DWORD)i*columns + j) == 0) wcounts++;
- }
- }
- if (wcounts >= wDegree * 5 / 8) *(target + (DWORD)(rows - 1)*columns + x) = 0;
- else *(target + (DWORD)(rows - 1)*columns + x) = 0xff;
- }
- // left line
- for (y = 1; y<rows - 1; y++)
- {
- if (*(source + (DWORD)y*columns) == 0)
- {
- *(target + (DWORD)y*columns) = 0;
- continue;
- }
- wcounts = 0;
- for (i = (WORD)(y - 1); i <= (WORD)(y + 1); i++)
- {
- for (j = 0; j <= 1; j++)
- {
- if (*(source + (DWORD)i*columns + j) == 0) wcounts++;
- }
- }
- if (wcounts >= wDegree * 5 / 8) *(target + (DWORD)y*columns) = 0;
- else *(target + (DWORD)y*columns) = 0xff;
- }
- // right line
- for (y = 1; y<rows - 1; y++)
- {
- if (*(source + (DWORD)y*columns + columns - 1) == 0)
- {
- *(target + (DWORD)y*columns + columns - 1) = 0;
- continue;
- }
- wcounts = 0;
- for (i = (WORD)(y - 1); i <= (WORD)(y + 1); i++)
- {
- for (j = (WORD)(columns - 2); j <= (WORD)(columns - 1); j++)
- {
- if (*(source + (DWORD)i*columns + j) == 0) wcounts++;
- }
- }
- if (wcounts >= wDegree * 5 / 8) *(target + (DWORD)y*columns + columns - 1) = 0;
- else *(target + (DWORD)y*columns + columns - 1) = 0xff;
- }
- return;
- }
- void COTSImageProcess::BDilate3(LPBYTE source, LPBYTE target, WORD wDegree, WORD rows, WORD columns)
- {
- WORD x, y, i, j, wcounts;
- for (y = 1; y<rows - 1; y++)
- {
- for (x = 1; x<columns - 1; x++)
- {
- if (*(source + (DWORD)y*columns + x) != 0)
- {
- *(target + (DWORD)y*columns + x) = 0xff;
- continue;
- }
- wcounts = 0;
- for (i = (WORD)(y - 1); i <= (WORD)(y + 1); i++)
- {
- for (j = (WORD)(x - 1); j <= (WORD)(x + 1); j++)
- {
- if (*(source + (DWORD)i*columns + j) != 0) wcounts++;
- }
- }
- if (wcounts >= wDegree) *(target + (DWORD)y*columns + x) = 0xff;
- else *(target + (DWORD)y*columns + x) = 0;
- }
- }
- // top line
- for (x = 1; x<columns - 1; x++)
- {
- if (*(source + x) != 0)
- {
- *(target + x) = 0xff;
- continue;
- }
- wcounts = 0;
- for (i = 0; i <= 1; i++)
- {
- for (j = (WORD)(x - 1); j <= (WORD)(x + 1); j++)
- {
- if (*(source + (DWORD)i*columns + j) != 0) wcounts++;
- }
- }
- if (wcounts >= wDegree * 5 / 8) // but does not mater, as we have border of 2 now
- {
- *(target + x) = 0xff;
- }
- else { *(target + x) = 0; }
- }
- // bottom line
- for (x = 1; x<columns - 1; x++)
- {
- if (*(source + (DWORD)(rows - 1)*columns + x) != 0)
- {
- *(target + (DWORD)(rows - 1)*columns + x) = 0xff;
- continue;
- }
- wcounts = 0;
- for (i = (WORD)(rows - 2); i <= (WORD)(rows - 1); i++)
- {
- for (j = (WORD)(x - 1); j <= (WORD)(x + 1); j++)
- {
- if (*(source + (DWORD)i*columns + j) != 0) wcounts++;
- }
- }
- if (wcounts > wDegree * 5 / 8)
- {
- *(target + (DWORD)(rows - 1)*columns + x) = 0xff;
- }
- else
- {
- *(target + (DWORD)(rows - 1)*columns + x) = 0;
- }
- }
- // left line
- for (y = 1; y<rows - 1; y++)
- {
- if (*(source + (DWORD)y*columns) != 0)
- {
- *(target + (DWORD)y*columns) = 0xff;
- continue;
- }
- wcounts = 0;
- for (i = (WORD)(y - 1); i <= (WORD)(y + 1); i++)
- {
- for (j = 0; j <= (WORD)1; j++)
- {
- if (*(source + (DWORD)i*columns + j) != 0) wcounts++;
- }
- }
- if (wcounts >= wDegree * 5 / 8)
- {
- *(target + (DWORD)y*columns) = 0xff;
- }
- else
- {
- *(target + (DWORD)y*columns) = 0;
- }
- }
- // right line
- for (y = 1; y<rows - 1; y++)
- {
- if (*(source + (DWORD)y*columns + columns - 1) != 0)
- {
- *(target + (DWORD)y*columns + columns - 1) = 0xff;
- continue;
- }
- wcounts = 0;
- for (i = (WORD)(y - 1); i <= (WORD)(y + 1); i++)
- {
- for (j = (WORD)(columns - 2); j <= (WORD)(columns - 1); j++)
- {
- if (*(source + (DWORD)i*columns + j) != 0) wcounts++;
- }
- }
- if (wcounts >= wDegree * 5 / 8)
- {
- *(target + (DWORD)y*columns + columns - 1) = 0xff;
- }
- else
- {
- *(target + (DWORD)y*columns + columns - 1) = 0;
- }
- }
- // four cornor points treated separately here
- // top-left
- if (*(source) != 0)
- {
- *target = 0xff;
- }
- else
- {
- wcounts = 0;
- if (*(source + 1) != 0) wcounts++;
- if (*(source + columns) != 0) wcounts++;
- if (*(source + columns + 1) != 0) wcounts++;
- // if (wcounts >= wDegree*3/8) // this is a bug here - interger division
- if (wcounts * 8 >= wDegree * 3)
- {
- *target = 0xff;
- }
- else
- {
- *target = 0;
- }
- }
- //top-right
- if (*(source + columns - 1) != 0)
- {
- *(target + columns - 1) = 0xff;
- }
- else
- {
- wcounts = 0;
- if (*(source + columns - 2) != 0) wcounts++;
- if (*(source + columns * 2 - 1) != 0) wcounts++;
- if (*(source + columns * 2 - 2) != 0) wcounts++;
- // if (wcounts >= wDegree*3/8) // this is a bug here - interger division
- if (wcounts * 8 >= wDegree * 3)
- {
- *(target + columns - 1) = 0xff;
- }
- else
- {
- *(target + columns - 1) = 0;
- }
- }
- //bottom-left
- if (*(source + (DWORD)columns * (rows - 1)) != 0)
- {
- *(target + (DWORD)columns * (rows - 1)) = 0xff;
- }
- else
- {
- wcounts = 0;
- if (*(source + (DWORD)columns * (rows - 1) + 1) != 0) wcounts++;
- if (*(source + (DWORD)columns * (rows - 2)) != 0) wcounts++;
- if (*(source + (DWORD)columns * (rows - 2) + 1) != 0) wcounts++;
- // if (wcounts >= wDegree*3/8) // this is a bug here - interger division
- if (wcounts * 8 >= wDegree * 3)
- {
- *(target + (DWORD)columns * (rows - 1)) = 0xff;
- }
- else
- {
- *(target + (DWORD)columns * (rows - 1)) = 0;
- }
- }
- //bottom-right
- if (*(source + (DWORD)columns * rows - 1) != 0)
- {
- *(target + (DWORD)columns * rows - 1) = 0xff;
- }
- else
- {
- wcounts = 0;
- if (*(source + (DWORD)columns * rows - 2) != 0) wcounts++;
- if (*(source + (DWORD)columns * (rows - 1) - 2) != 0) wcounts++;
- if (*(source + (DWORD)columns * (rows - 1) - 1) != 0) wcounts++;
- // if (wcounts >= wDegree*3/8) // this is a bug here - interger division
- if (wcounts * 8 >= wDegree * 3)
- {
- *(target + (DWORD)columns * rows - 1) = 0xff;
- }
- else
- {
- *(target + (DWORD)columns * rows - 1) = 0;
- }
- }
- return;
- }
- // ReZoom the picture with re-magnification
- BOOL COTSImageProcess::ReZoom(CString InPutPath, CString OutPutPath)
- {
- Mat cvSrcImg;
- string strInputPath;
- strInputPath = CStringA(InPutPath);
- // Pictures loop in folder
- std::vector<cv::String> ImageFolder;
- cv::glob(strInputPath, ImageFolder);
- if (ImageFolder.size() == 0)
- {
- return FALSE;
- }
- for (unsigned int nImgNum = 0; nImgNum < ImageFolder.size(); ++nImgNum) {
- cvSrcImg = cv::imread(ImageFolder[nImgNum], CV_LOAD_IMAGE_GRAYSCALE);
- // Image convolution operation
- //// convolution kernel
- float kernel[] = { -1, -1 , -1, -1 , 0, -1, -1 , -1 , -1 };
- cv::Mat ker = cv::Mat(nImage_Size, nImage_Size, CV_32F, &kernel);
- cv::Mat cvDstImg = cv::Mat(cvSrcImg.size(), cvSrcImg.type());
- // anchor of the kernel
- cv::Point anchor(-1, -1);
- cv::filter2D(cvSrcImg, cvDstImg, CV_32F, ker, anchor, delta, cv::THRESH_TRUNC);
- // Maximum Pixel Value
- cvDstImg = abs(cvDstImg);
- double minVal, maxVal;
- minMaxLoc(cvDstImg, &minVal, &maxVal);
- // Grayscale image
- int nReduce;
- Mat onesImg = Mat::ones(cvDstImg.rows, cvDstImg.cols, CV_32F) * (int)minVal;
- absdiff(cvDstImg, onesImg, cvDstImg);
- nReduce = (int)maxVal - minVal;
- cvDstImg = cvDstImg * nBlackColor / nReduce;
- // Output image convert data to int
- cvDstImg.convertTo(cvDstImg, CV_8U);
- // Process the picture to 128 pixels
- resize(cvDstImg, cvDstImg, Size(nPictureSize, nPictureSize));
- threshold(cvDstImg, cvDstImg, nProcessParam, nBlackColor, CV_THRESH_BINARY);
- string strOutPutPath;
- strOutPutPath = CStringA(OutPutPath);
- imwrite(strOutPutPath , cvDstImg);
- }
- return TRUE;
- }
- BOOL COTSImageProcess::RemoveBSEImageBG(CBSEImgPtr m_pBSEImg, COTSImageProcessParamPtr a_pImgProcessParam,COTSFieldDataPtr m_pFieldData)
- {
- ASSERT(m_pFieldData);
- if (!m_pFieldData)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("RemoveBSEImageBG: there is no field data"));
- return FALSE;
- }
- ASSERT(m_pBSEImg);
- if (!m_pBSEImg)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("RemoveBSEImageBG: there is no image data"));
- return FALSE;
- }
- ASSERT(a_pImgProcessParam);
- if (!a_pImgProcessParam)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("RemoveBSEImageBG: there is no image process data"));
- return FALSE;
- }
- int nWidthImg = m_pBSEImg->GetWidth();
- int nHeightImg = m_pBSEImg->GetHeight();
- m_pFieldData->Width = nWidthImg;
- m_pFieldData->Height = nHeightImg;
- long nImgSize = nWidthImg * nHeightImg;
-
-
- BYTE* pSrcImg = m_pBSEImg->GetImageDataPointer();
- BYTE* pTempImg = new BYTE[nImgSize];
-
-
-
- CBSEImgPtr imgNoBGBinary = CBSEImgPtr(new CBSEImg());
- long nNumParticle = 0;
- RemoveBackGround(m_pBSEImg, a_pImgProcessParam, imgNoBGBinary,nNumParticle);
-
-
- BYTE* pPixel = imgNoBGBinary->GetImageDataPointer();
-
-
-
- long nPtStart = a_pImgProcessParam->GetParticleGray().GetStart();
- long nPtEnd = a_pImgProcessParam->GetParticleGray().GetEnd();
- if (nNumParticle == 0)
- {
- COTSParticleList listParticleEmpty;
- listParticleEmpty.clear();
- m_pFieldData->SetParticleList(listParticleEmpty);
- //memset(pPixel, 0, nImgSize);
- LogInfoTrace(__FILE__, __LINE__, _T("RemoveBSEImageBG: no particle is found."));
- }
- else
- {
- //memcpy(pTempImg, pPixel, nImgSize);
- // get the area image
- COTSImageProcess::BErode3(pPixel, pTempImg, 5, nHeightImg, nWidthImg);
- COTSImageProcess::BDilate3(pTempImg, pPixel, 5, nHeightImg, nWidthImg);
- COTSParticleList listParticleOut;
- if (!GetParticles(nWidthImg, nHeightImg, pPixel, listParticleOut))
- {
- COTSParticleList listParticleEmpty;
- listParticleEmpty.clear();
- m_pFieldData->SetParticleList(listParticleEmpty);
- //memset(pPixel, 0, nImgSize);
- }
-
- // form a image only have particles on
- COTSSegmentsList listImage;
- for (auto pParticle : listParticleOut)
- {
- COTSFeaturePtr pFeature = pParticle->GetFeature();
- COTSSegmentsList listSegment = pFeature->GetSegmentsList();
- long nPixelNum = 0;
- long nPixelAll = 0;
- int nStartS = 0;
- int nHeightS = 0;
- int nLengthS = 0;
- for (auto pSegment : listSegment)
- {
- // update image list
- COTSSegmentPtr pSegNew = COTSSegmentPtr(new COTSSegment(*pSegment.get()));
- listImage.push_back(pSegNew);
- // get particle average gray
- nStartS = pSegment->GetStart();
- nHeightS = pSegment->GetHeight();
- nLengthS = pSegment->GetLength();
- nPixelNum += (long)nLengthS;
- if (nHeightS > nHeightImg)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("seg height is wrong."));
- return FALSE;
- }
- if ((nStartS + nLengthS - 1) > nWidthImg)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("seg starst and length is wrong."));
- return FALSE;
- }
- for (unsigned int i = 0; i < nLengthS; i++)
- {
- if ((nStartS + i) > nWidthImg)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("seg start is wrong."));
- return FALSE;
- }
- else if (nHeightS > nHeightImg)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("seg height is wrong."));
- return FALSE;
- }
- long nValueTemp = (long)*(pSrcImg + nHeightS * nWidthImg + nStartS + i);
- nPixelAll += nValueTemp;
- }
- }
- BYTE nAveGray = (BYTE)(nPixelAll / nPixelNum);
- pParticle->SetAveGray(nAveGray);
- pParticle->SetArea(nPixelNum);
- }
- m_pFieldData->SetParticleList(listParticleOut);
- }
-
- delete[]pTempImg;
- //delete[]pTempImg;
- return TRUE;
-
-
- }
- CIntRangePtr COTSImageProcess::CalBackground(CBSEImgPtr m_pBSEImg)
- {
- CIntRangePtr pBackground = CIntRangePtr(new CIntRange());
- WORD nBSEChart[MAXBYTE];
- //1. get chart data
- m_pBSEImg->SetChartData();
- linearSmooth5(m_pBSEImg->GetBSEChart(), nBSEChart,MAXBYTE);
- //2. get down edge
- int nLengthEdge = MAXBYTE + 2;
- WORD n_aBSEChart[MAXBYTE + 2];
- memset(n_aBSEChart, 0, sizeof(WORD) * nLengthEdge);
- std::map<long, std::vector <int>> upEdgeSeries;
- std::map<long, std::vector<int>> downEdgeSeries;
- std::vector<int> currentUpSeries;
- std::vector<int> currentDownSeries;
- // make sure the wave begin with up edge and end with down edge
- n_aBSEChart[0] = 0;
- n_aBSEChart[nLengthEdge - 1] = 0;
- memcpy(&n_aBSEChart[1], &nBSEChart, sizeof(WORD) * MAXBYTE);
- int nLengthCom = MAXBYTE + 1;
- // up edge
- for (int i = 0; i < nLengthCom; i++)
- {
- if (n_aBSEChart[i] <= n_aBSEChart[i + 1])
- {
- if (currentDownSeries.size() > 0)
- {
- int seriesSize = currentDownSeries.size();
- long area = 0;
- for (int i = 0; i < seriesSize; i++)
- {
- area = area + n_aBSEChart[currentDownSeries[i]];
- }
- downEdgeSeries[area] = currentDownSeries;
- currentDownSeries.clear();
- }
- currentUpSeries.push_back(i);
- }
- else
- {
- if (currentUpSeries.size() > 0)
- {
- int seriesSize = currentUpSeries.size();
- long area = 0;
- for (int i = 0; i < seriesSize; i++)
- {
- area = area + n_aBSEChart[currentUpSeries[i]];
- }
- upEdgeSeries[area] = currentUpSeries;
- currentUpSeries.clear();
- }
- currentDownSeries.push_back(i);
- }
- }
- CIntRangePtr pRangeFirst = CIntRangePtr(new CIntRange());
- if (upEdgeSeries.size() > 0)
- {
- pRangeFirst->SetStart((upEdgeSeries.rbegin())->second[0]);
- }
- if (downEdgeSeries.size() > 0)
- {
- auto s = downEdgeSeries.rbegin()->second;
- pRangeFirst->SetEnd((long)(s[s.size() - 1]));
- }
- /*delete[] nBSEChart;
- delete[] n_aBSEChart;*/
- return pRangeFirst;
- }
- void COTSImageProcess::RemoveBackGround(CBSEImgPtr a_pImgIn, COTSImageProcessParamPtr a_pImageProcessParam, CBSEImgPtr a_pBinImgOut,long& foundedPixelNum)
- {
- // the background pixel will be 0,and the other part will be 255.
- ASSERT(a_pImgIn);
-
- ASSERT(a_pImageProcessParam);
- int nWidthImg = a_pImgIn->GetWidth();
- int nHeightImg = a_pImgIn->GetHeight();
- long nImgSize = nWidthImg * nHeightImg;
- BYTE* pTempImg = new BYTE[nImgSize];
- BYTE* pTempImg2 = new BYTE[nImgSize];
- BYTE* pSrcImg = a_pImgIn->GetImageDataPointer();
- //memcpy(pTempImg2, pSrcImg, nImgSize);
- //cv::blur(pSrcImg, pTempImg2, nImgSize);
-
-
-
- BYTE* pPixel = new byte[nImgSize];
-
-
- long nBGStart;
- long nBGEnd;
- long nNumParticle = 0;
- if (a_pImageProcessParam->GetBGRemoveType() == OTS_BGREMOVE_TYPE::MANUAL)
- {
- nBGStart = a_pImageProcessParam->GetBGGray().GetStart();
- nBGEnd = a_pImageProcessParam->GetBGGray().GetEnd();
- // delete background
- for (unsigned int i = 0; i < nImgSize; i++)
- {
- if (pTempImg2[i] >= nBGStart && pTempImg2[i] <= nBGEnd)
- {
- pPixel[i] = 0;
- }
- else
- {
- pPixel[i] = 255;
- nNumParticle++;
- }
- }
- COTSImageProcess::BErode3(pPixel, pTempImg, 5, nHeightImg, nWidthImg);
- COTSImageProcess::BDilate3(pTempImg, pPixel, 5, nHeightImg, nWidthImg);
- }
- else
- {
- /*CBSEImgPtr srcImg2 = CBSEImgPtr(new CBSEImg());
- srcImg2->SetImageData(a_pImgIn, nWidthImg, nHeightImg);*/
- auto range = CalBackground(a_pImgIn);
- nBGStart = range->GetStart();
- nBGEnd = range->GetEnd();
- switch (a_pImageProcessParam->GetAutoBGRemoveType())
- {
- case OTS_AUTOBGREMOVE_TYPE::DOWNWARD:
- for (unsigned int i = 0; i < nImgSize; i++)
- {
- if (pTempImg2[i] <= nBGEnd)
- {
- pPixel[i] = 0;
- }
- else
- {
- pPixel[i] = 255;
- nNumParticle++;
- }
- }
- break;
- case OTS_AUTOBGREMOVE_TYPE::UPWARD:
- for (unsigned int i = 0; i < nImgSize; i++)
- {
- if (pTempImg2[i] >= nBGStart)
- {
- pPixel[i] = 0;
- }
- else
- {
- pPixel[i] = 255;
- nNumParticle++;
- }
- }
- break;
- case OTS_AUTOBGREMOVE_TYPE::MIDDLE:
- for (unsigned int i = 0; i < nImgSize; i++)
- {
- if (pTempImg2[i] >= nBGStart && pTempImg2[i] <= nBGEnd)
- {
- pPixel[i] = 0;
- }
- else
- {
- pPixel[i] = 255;
- nNumParticle++;
- }
- }
- break;
- default:
- break;
- }
- COTSImageProcess::BErode3(pPixel, pTempImg, 5, nHeightImg, nWidthImg);
- COTSImageProcess::BDilate3(pTempImg, pPixel, 5, nHeightImg, nWidthImg);
- }
- a_pBinImgOut->SetImageData(pPixel,nWidthImg,nHeightImg);
-
- foundedPixelNum = nNumParticle;
- delete[] pTempImg;
- delete[] pTempImg2;
- return ;
- }
- BOOL COTSImageProcess::GetParticles(long a_nWidth, long a_nHeight, const BYTE* a_pPixel, COTSParticleList& a_listParticles)
- {
- ASSERT(a_pPixel);
- if (!a_pPixel)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("GetParticles: there is no image data"));
- return FALSE;
- }
- a_listParticles.clear();
- COTSSegmentsList listSegment;
- listSegment.clear();
- //1. get segment line by line
- if (!GetSegmentList(a_nWidth, a_nHeight, a_pPixel, listSegment))
- {
- LogErrorTrace(__FILE__, __LINE__, _T("GetParticles:failed to get segments."));
- return FALSE;
- }
- if ((int)listSegment.size() == 0)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("no particle is found."));
- return FALSE;
- }
- //2. save the temp feature
- COTSFeatureList listFeature;
- listFeature.clear();
- if (!GetFeatureList1(listSegment, listFeature))
- {
- LogErrorTrace(__FILE__, __LINE__, _T("GetParticles:failed to get up down segment list."));
- return FALSE;
- }
- if ((int)listFeature.size() == 0)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("no particle is found."));
- return FALSE;
- }
- COTSParticleList listParticles;
- listParticles.clear();
- if (!ChangeFeaturelist(listFeature, a_listParticles))
- {
- LogErrorTrace(__FILE__, __LINE__, _T("can't change feature to particle."));
- return FALSE;
- }
- return TRUE;
- }
- BOOL COTSImageProcess::GetSegmentList(long a_nWidth, long a_nHeight, const BYTE* a_pPixel, COTSSegmentsList& a_listSegments)
- {
- ASSERT(a_pPixel);
- if (!a_pPixel)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("GetSegments: there is no image data"));
- return FALSE;
- }
- long nImgSize = a_nWidth * a_nHeight;
- a_listSegments.clear();
- //1. get segment line by line
- long nLine, nm, nn;
- long nStart, nLength;
- for (nLine = 0; nLine < a_nHeight; nLine++)
- {
- for (nm = 0; nm < a_nWidth; nm += (nLength + 1))
- {
- nLength = 0;
- // get start
- if (*(a_pPixel + nLine * a_nWidth + nm) != 0)
- {
- nStart = nm;
- nLength++;
- //get length
- for (nn = nm + 1; nn < a_nWidth; nn++)
- {
- // check if segment is over, break
- if (nLength != 0)
- {
- if (*(a_pPixel + nLine * a_nWidth + nn) == 0)
- break;
- }
- if (*(a_pPixel + nLine * a_nWidth + nn) != 0)
- {
- nLength++;
- }
- }
- // generate segment
- COTSSegmentPtr pSegment = COTSSegmentPtr(new COTSSegment(nLine, nStart, nLength));
- a_listSegments.push_back(pSegment);
- }
- else
- {
- continue;
- }
- }
- }
- if ((int)a_listSegments.size() == 0)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("no particle is found."));
- return FALSE;
- }
- return TRUE;
- }
- BOOL COTSImageProcess::GetFeatureList1(COTSSegmentsList& a_listSegments, COTSFeatureList& a_listFeatures)
- {
- COTSSegmentsList listSegmentNew;
- std::map<long, COTSSegmentsList > mapOneLineSegments;
- for each (auto s in a_listSegments)
- {
- mapOneLineSegments[s->GetHeight()].push_back(s);//sorting all the segments base on the line number.
- }
- std::map<long, COTSSegmentsList >::iterator lineItr = mapOneLineSegments.begin();//find the highest line
- while (lineItr != mapOneLineSegments.end())
- {
- for (auto s = lineItr->second.begin(); s < lineItr->second.end(); )//find one segment of this line.
- {
- COTSSegmentPtr bottomSeg = *s;
- listSegmentNew.clear();
- listSegmentNew.push_back(*s);
- s = lineItr->second.erase(s);
- std::map<long, COTSSegmentsList >::iterator tempItr = lineItr;
- tempItr++;
- for (; tempItr != mapOneLineSegments.end(); tempItr++)//find all other lines of segments
- {
- if (tempItr->first - bottomSeg->GetHeight() > 1)
- {
- break;
- }
- for (auto nextLineSegment = tempItr->second.begin(); nextLineSegment < tempItr->second.end();)//find next line's all segments
- {
- if (((*nextLineSegment)->GetStart() - (bottomSeg->GetStart() + bottomSeg->GetLength())) > 1)
- {
- break;
- }
- if (bottomSeg->UpDownConection(**nextLineSegment))
- {
- listSegmentNew.push_back(*nextLineSegment);
- bottomSeg = *nextLineSegment;
- nextLineSegment = tempItr->second.erase(nextLineSegment);
- break;
- }
- if (tempItr->second.size() > 0)
- {
- nextLineSegment++;
- }
- else
- {
- break;
- }
- }
- }
- COTSFeaturePtr pFeature = COTSFeaturePtr(new COTSFeature());
- pFeature->SetSegmentsList(listSegmentNew);
- //check if this new feature is connected with other found feature.
- COTSSegmentPtr topSeg = listSegmentNew[0];//find the toppest segment of this new feature.
- COTSSegmentPtr bottomSegment = listSegmentNew[listSegmentNew.size() - 1];//find the lowest segment of this new feature.
- bool haveMerged = false;
- for each (auto f in a_listFeatures)
- {
- for (auto seg : f->GetSegmentsList())
- {
- if (bottomSegment->UpDownConection(*seg) || topSeg->UpDownConection(*seg))
- {
- COTSSegmentsList segs = f->GetSegmentsList();
- for (auto s : listSegmentNew)
- {
- segs.push_back(s);
- }
- f->SetSegmentsList(segs);
- haveMerged = true;
- break;
- }
- }
- if (haveMerged)
- {
- break;
- }
- }
- if (!haveMerged)
- {
- a_listFeatures.push_back(pFeature);
- }
- if (lineItr->second.size() == 0)
- {
- break;
- }
- }
- lineItr++;
- }
- return true;
- }
- BOOL COTSImageProcess::ChangeFeaturelist(COTSFeatureList& a_listFeatures, COTSParticleList& a_listParticle)
- {
- if (a_listFeatures.size() == 0)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("ChangeFeaturelist: there is no feature in the list."));
- return FALSE;
- }
- // compute Rect
- for (auto pFeature : a_listFeatures)
- {
- COTSParticlePtr pParticle = COTSParticlePtr(new COTSParticle());
- pParticle->SetFeature(pFeature);
- if (!pParticle->CalCoverRect())
- {
- LogErrorTrace(__FILE__, __LINE__, _T("ChangeFeaturelist: failed to get particle rect."));
- return FALSE;
- }
- a_listParticle.push_back(pParticle);
- }
- if ((int)a_listParticle.size() == 0)
- {
- LogErrorTrace(__FILE__, __LINE__, _T("Can't get particle."));
- return FALSE;
- }
- return TRUE;
- }
- BOOL COTSImageProcess::CalcuParticleImagePropertes(COTSParticlePtr a_pOTSPart, double a_PixelSize)
- {
- //--------- convert this particle data to image data,construct an image only with this particle.------
- const int nExpand_Size = 3;
- const int nWhiteColor = 0;
- const int nThickness = 1;
- // lineType Type of the line
- const int nLineType = 8;
- // get rectangle of the particle
- CRect rect = a_pOTSPart->GetParticleRect();
- if (a_pOTSPart->GetArea() < 80 * a_PixelSize)// the particle is too small that openCV can't calculate a width value of it. Then we take the upright rect of the particle as it's minArea rect.
- {
- double w = 0, h = 0;
- w = (double)rect.Width()*a_PixelSize;
- h = (double)rect.Height()*a_PixelSize;
- a_pOTSPart->SetDMax(MAX(w, h));
- a_pOTSPart->SetDMin(MIN(w, h));
- a_pOTSPart->SetDMean((w + h) / 2);
- a_pOTSPart->SetFeretDiameter((w + h) / 2);
- a_pOTSPart->SetDElong(MAX(w, h));
- a_pOTSPart->SetPerimeter((w+h)*2);
- a_pOTSPart->SetDPerp(MIN(w, h));
- a_pOTSPart->SetDInscr(MIN(w, h));
- return true;
- }
- // calculate the particle image data size, expand 3 pixel at the edge
- Mat particleImage = Mat::zeros(rect.Height() + nExpand_Size , rect.Width() + nExpand_Size , CV_8U);
- // get the segment list
- COTSSegmentsList listSegment = a_pOTSPart->GetFeature()->GetSegmentsList();
- for (auto pSegment : listSegment)
- {
- int nStart = pSegment->GetStart() - rect.left + nExpand_Size;
- int nEnd = pSegment->GetStart() + pSegment->GetLength() - rect.left - 1 + nExpand_Size;
- int nHeight = pSegment->GetHeight() - rect.top + nExpand_Size;
- line(particleImage, Point(nStart, nHeight), Point(nEnd, nHeight), Scalar(nBlackColor), nThickness, nLineType);
- }
- //--------abstract the contour of the particle.
- Mat cvcopyImg;
- medianBlur(particleImage, cvcopyImg, 7);//smooth the edge
- Mat cvContourImg = Mat::zeros(rect.Height() + nExpand_Size, rect.Width() + nExpand_Size, CV_8U);
- vector<vector<Point>>contours;
- Canny(cvcopyImg, cvcopyImg, 20, 20 * 2, 3);
- findContours(cvcopyImg, contours, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_NONE);
- if (contours.size()==0)// the particle is too odd that openCV can't find a contour of it. Then we take the upright rect of the particle as it's minArea rect.
- {
- double w = 0, h = 0;
- w = (double)rect.Width()*a_PixelSize;
- h = (double)rect.Height()*a_PixelSize;
- a_pOTSPart->SetDMax(MAX(w, h));
- a_pOTSPart->SetDMin(MIN(w, h));
- a_pOTSPart->SetDMean((w + h) / 2);
- a_pOTSPart->SetFeretDiameter((w + h) / 2);
- a_pOTSPart->SetDElong(MAX(w, h));
- a_pOTSPart->SetPerimeter((w + h) * 2);
- a_pOTSPart->SetDPerp(MIN(w, h));
- a_pOTSPart->SetDInscr(MIN(w, h));
- return true;
- }
- int imaxcontour = 0, imax = 0;
- for (unsigned int i = 0; i < contours.size(); i++) {
- int itmp = contourArea(contours[i]);
- if (imaxcontour < itmp) {
- imax = i;
- imaxcontour = itmp;
- }
- }
- vector<Point > listEdge = contours[imax];
-
- vector<vector<Point>>Outcontours;
- Outcontours.push_back(listEdge);
-
- //---------calculate the minimium rectangle
- auto rRect = cv::minAreaRect(listEdge);
- Point2f p[4];
- rRect.points(p);
- int D_MIN =getDistance(p[0], p[1]);
- int D_MinRecLen = 0;//minareaRect's length(the lenger side).
- for (int j = 0; j <= 2; j++)
- {
- //line(cvContourImg, p[j], p[(j + 1) % 4], Scalar(100, 100, 0), 2);
- int d = getDistance(p[j], p[j + 1]);
- if (d < D_MIN)
- {
- D_MIN = d;
- }
- if (d > D_MinRecLen)
- {
- D_MinRecLen = d;
- }
- }
- a_pOTSPart->SetDMin(D_MIN*a_PixelSize);
- a_pOTSPart->SetOrientation(rRect.angle);
- //----------calculate the perimeter
- double d = arcLength(listEdge, true);
- a_pOTSPart->SetPerimeter(d*a_PixelSize);
- //-----------calculate the Max Diameter. Find the min enclosing circle first ,then find the two farthest circle connected point.
- Point2f center; float radius;
- minEnclosingCircle(listEdge, center, radius);
- //circle(cvContourImg, center, radius, Scalar(100), 2);
- std::vector <Point> outContour = listEdge;
-
- std::vector <Point> rst;
- for (unsigned int k = 0; k < outContour.size(); k++)
- {
- Point p = outContour[k];
- double d = sqrt(pow((p.x - center.x), 2) + pow((p.y - center.y), 2));
- if (fabs(d - radius) < 0.01)
- {
- rst.push_back(p);
- }
- }
- double D_MAX = 0;
- Point lineDmax[2];
- for (unsigned int m = 0; m < rst.size(); m++)
- {
- Point p = rst[m];
- for (unsigned int n = m + 1; n < rst.size(); n++)
- {
- Point p1 = rst[n];
- double d = sqrt(powf((p.x - p1.x), 2) + powf((p.y - p1.y), 2));
- if (d > D_MAX)
- {
- D_MAX = d;
- lineDmax[0] = p;
- lineDmax[1] = p1;
- }
- }
- }
- a_pOTSPart->SetDMax(D_MAX*a_PixelSize);
-
- //--------calculate the D_PERP property using the D_MAX's two endpoints.
- std::vector<Point> curve1;
- std::vector<Point> curve2;
- for (unsigned int i = 0; i < outContour.size(); i++)
- {
- Point pt = outContour[i];
- bool start = false;
- int clockwise = Side(lineDmax[0], lineDmax[1], pt);// devide these points into two group ,separate into the two sides.
- if (clockwise > 0)
- {
- curve1.push_back(pt);
- }
- else
- {
- curve2.push_back(pt);
- }
- }
- double d_perp1 = 0, d_perp2 = 0;
- for (unsigned int i = 0; i < curve1.size(); i++)
- {
- double d = getDist_P2L(curve1[i], lineDmax[0], lineDmax[1]);
- if (d > d_perp1)
- {
- d_perp1 = d;
- }
- }
- for (unsigned int i = 0; i < curve2.size(); i++)
- {
- double d = getDist_P2L(curve2[i], lineDmax[0], lineDmax[1]);
- if (d > d_perp2)
- {
- d_perp2 = d;
- }
- }
- a_pOTSPart->SetDPerp((d_perp1 + d_perp2)*a_PixelSize);
- //----------find the diameter of max inscribed circle
- int r;
- Point inscribeCirclecenter;
- FindInnerCircleInContour(outContour, inscribeCirclecenter, r);
- //circle(cvContourImg, inscribeCirclecenter, r, Scalar(200));
- a_pOTSPart->SetDInscr(r * 2 * a_PixelSize);
- //---------------calculate the image other caracater: length/width realArea/minRectangeArea etc. we can use these propertes to do forward process.
- double minRectArea = D_MIN * D_MinRecLen*a_PixelSize*a_PixelSize;//最小外接矩形面积
- double fillRatio = a_pOTSPart->GetArea() / minRectArea;//实际面积与最小外接矩形面积比,that's the fill rate.
- double lengthWidthRatio;
- lengthWidthRatio = (double)D_MinRecLen / D_MIN;//长宽比
-
- //decide if this shape is a strip shape :if the lenthWidthRatio>2 then it is. if the lengthWidthRatio<2 and the areaRatio<0.5 then it is.
- bool isStripShape = false;
- double curveLength = 0;
- double D_MEAN=0;
- Moments mu;
- mu = moments(listEdge, false);
- int nx = mu.m10 / mu.m00;
- int ny = mu.m01 / mu.m00;
- //circle(cvcopyImg, Point(nx, ny), 1, (255), 1);
- Point ptCenter = Point((int)nx, (int)ny);
- if (pointPolygonTest(outContour, ptCenter, false) != 1)// the center point doesn't contain in the contour, we think it as curve shape.
- {
- isStripShape = true;
- }
- /*if (lengthWidthRatio >= 2 )// in PartA software this is true,but IncA because of the GB definition the everage feret diameter is always the mean value of all the chord.
- {
-
- isStripShape = true;
- }*/
-
- if (fillRatio <= 0.4)// only when the fill rate is very low,we think it as a curve shape,then we choose the mean width as the feret diameter.
- {
- isStripShape = true;
- }
-
- if (isStripShape)
- {
- curveLength = a_pOTSPart->GetPerimeter()/2 - a_pOTSPart->GetDInscr()/2;// thinking this particle as a strip rectangle.the width is the max inscribe circle diameter/2.
- if (curveLength < D_MAX)
- {
- curveLength = D_MAX;
- }
- if (curveLength < MIN_DOUBLE_VALUE || a_pOTSPart->GetArea()<MIN_DOUBLE_VALUE)
- {
- D_MEAN = 0;
- }
- else
- {
- D_MEAN = a_pOTSPart->GetArea() / curveLength;
- }
-
- a_pOTSPart->SetDMean(D_MEAN*a_PixelSize);
- a_pOTSPart->SetFeretDiameter(D_MEAN*a_PixelSize);
- a_pOTSPart->SetDElong (curveLength*a_PixelSize);
- }
- else//it's a ball shape particle
- {
- curveLength = D_MAX;
- double ftd = 0, maxD = 0, minD = 0, dratio = 0;
- GetParticleAverageChord(outContour, a_PixelSize, ftd);
-
- a_pOTSPart->SetDMean(ftd);
- a_pOTSPart->SetFeretDiameter(ftd);
- a_pOTSPart->SetDElong(curveLength*a_PixelSize);
- }
- return true;
-
- }
- BOOL COTSImageProcess::MergeBigBoundaryParticles(COTSFieldDataList allFields,double pixelSize,int scanFieldSize, CSize ResolutionSize, COTSParticleList& mergedParts)
- {
- COTSSegmentsList boarderSegs;
- auto FldMgr = new CFieldMgr(scanFieldSize, ResolutionSize);
-
- std::map<COTSParticle*, COTSParticleList> mapMergeParticles;//hold up all the boundary connected particles. the pair's first is also the member of these particles.
- std::map<COTSParticle*, COTSSegmentsList> mapMergedSegments;//hold up all the segment's corresponding clone in the connected particles.
- for (auto centerfld : allFields)
- {
- // find neighbor field on the left.
- auto leftFld = FldMgr->FindNeighborField(allFields, centerfld, SORTING_DIRECTION::LEFT);
- if (leftFld != nullptr)
- {
- auto leftParts = centerfld->GetLeftBorderedBigParticles();
- auto rightParts = leftFld->GetRightBorderedBigParticles();
- for (auto leftp : leftParts)
- {
- for (auto rightp : rightParts)
- {
- if (leftp->IsConnected(rightp.get(), centerfld->Width, centerfld->Height, (int)SORTING_DIRECTION::LEFT))
- {
- if (leftp->headerParticle != NULL)
- {
- if (rightp->headerParticle == NULL)
- {
- rightp->headerParticle = leftp->headerParticle;
- mapMergeParticles[leftp->headerParticle].push_back(rightp);
- }
- }
- else
- {
- if (rightp->headerParticle != NULL)
- {
- leftp->headerParticle = rightp.get();
- mapMergeParticles[rightp.get()].push_back(leftp);
- }
- else
- {
- leftp->headerParticle = leftp.get();
- rightp->headerParticle = leftp.get();
- mapMergeParticles[leftp.get()].push_back(rightp);
- }
- }
- }
- }
- }
- }
- //find neighbor field on the upward
- auto upFld = FldMgr->FindNeighborField(allFields, centerfld, SORTING_DIRECTION::UP);
- if (upFld != nullptr)
- {
- auto upParts = centerfld->GetTopBorderedBigParticles();
- auto downParts = upFld->GetBottomBorderedBigParticles();
- for (auto upprt : upParts)
- {
- for (auto downprt : downParts)
- {
- if (upprt->IsConnected(downprt.get(), centerfld->Width, centerfld->Height, (int)SORTING_DIRECTION::UP))
- {
- if (upprt->headerParticle != NULL)
- {
- if (downprt->headerParticle == NULL)
- {
- downprt->headerParticle = upprt->headerParticle;
- mapMergeParticles[upprt->headerParticle].push_back(downprt);
- }
- }
- else
- {
- if (downprt->headerParticle != NULL)
- {
- upprt->headerParticle = downprt->headerParticle;
- mapMergeParticles[downprt.get()].push_back(upprt);
- }
- else
- {
- upprt->headerParticle = upprt.get();
- downprt->headerParticle = upprt.get();
- mapMergeParticles[upprt.get()].push_back(downprt);
- }
- }
- }
- }
- }
- }
- //find neighbor field on the downward.
- auto downFld = FldMgr->FindNeighborField(allFields, centerfld,SORTING_DIRECTION::DOWN);
- if (downFld != nullptr)
- {
- auto downParts = centerfld->GetBottomBorderedBigParticles();
- auto upParts = downFld->GetTopBorderedBigParticles();
- for (auto downprt : downParts)
- {
- for (auto upprt : upParts)
- {
- if (downprt->IsConnected(upprt.get(), centerfld->Width, centerfld->Height, (int)SORTING_DIRECTION::DOWN))
- {
- if (downprt->headerParticle != NULL)
- {
- if (upprt->headerParticle == NULL)
- {
- upprt->headerParticle = downprt->headerParticle;
- mapMergeParticles[downprt->headerParticle].push_back(upprt);
- }
- }
- else
- {
- if (upprt->headerParticle != NULL)
- {
- downprt->headerParticle = upprt->headerParticle;
- mapMergeParticles[upprt->headerParticle].push_back(downprt);
- }
- else
- {
- downprt->headerParticle = downprt.get();
- upprt->headerParticle = downprt.get();
- mapMergeParticles[downprt.get()].push_back(upprt);
- }
- }
- }
- }
- }
- }
- //find neighbor field on the right.
- auto rightFld = FldMgr->FindNeighborField(allFields, centerfld, SORTING_DIRECTION::RIGHT);
- if (rightFld != nullptr)
- {
- auto rightParts = centerfld->GetRightBorderedBigParticles();
- auto leftParts = rightFld->GetLeftBorderedBigParticles();
- for (auto rightprt : rightParts)
- {
- for (auto leftprt : leftParts)
- {
- if (rightprt->IsConnected(leftprt.get(), centerfld->Width, centerfld->Height, (int)SORTING_DIRECTION::RIGHT))
- {
- if (rightprt->headerParticle != NULL)
- {
- if (leftprt->headerParticle == NULL)
- {
- leftprt->headerParticle = rightprt->headerParticle;
- mapMergeParticles[rightprt->headerParticle].push_back(leftprt);
- }
- }
- else
- {
- if (leftprt->headerParticle != NULL)
- {
- rightprt->headerParticle = leftprt->headerParticle;
- mapMergeParticles[leftprt->headerParticle].push_back(rightprt);
- }
- else
- {
- rightprt->headerParticle = rightprt.get();
- leftprt->headerParticle = rightprt.get();
- mapMergeParticles[rightprt.get()].push_back(leftprt);
- }
- }
- }
- }
- }
- }
- }
- for (auto pair : mapMergeParticles)
- {
- struct EleAreaPercentage
- {
- EleAreaPercentage(double p, CElementChemistryPtr e)
- {
- areaPercentage = p;
- eleData = e;
- }
- double areaPercentage;
- CElementChemistryPtr eleData;
- };
- auto newPart = COTSParticlePtr(new COTSParticle());
- COTSSegmentsList newSegs;
- auto p = pair.first;
- //firstly,we sum up all the merged particles's area and get the represent string.
- std::string partsStr = std::to_string(p->GetFieldId()) + ":" + std::to_string(p->GetAnalysisId());
- double allPartArea = p->GetArea();//Get the first particle's area.
- for (auto other : pair.second)// Get the total area of all these particles for the use of ele calcu.
- {
- partsStr += "," + std::to_string(other->GetFieldId()) + ":" + std::to_string(other->GetAnalysisId());//Get the subparticles string such as "1:1,2:1" etc.
- allPartArea += other->GetArea();//Get other particle's area
- }
- // calculate all the new segment's position.
- std::vector <COTSParticle*> allSubParts;
- allSubParts.push_back(p);
- for (auto other : pair.second)// Get the total area of all these particles for the use of ele calcu.
- {
- allSubParts.push_back(other.get());
- }
- for (auto subp : allSubParts)
- {
- int fid = subp->GetFieldId();
- CPoint myFldPos;
- for (auto f : allFields)//find this particle's filed.
- {
- if (f->GetId() == fid)
- {
- myFldPos = f->GetPosition();
- }
- }
- int fldWidth = allFields[0]->Width;
- int fldHeight = allFields[0]->Height;
- CPoint fldLeftUpPos = CPoint(myFldPos.x + fldWidth / 2 * pixelSize, myFldPos.y + fldHeight / 2 * pixelSize);
- for (auto s : subp->GetFeature()->GetSegmentsList())
- {
- COTSSegmentPtr newseg = COTSSegmentPtr(new COTSSegment());
- newseg->SetStart(s->GetStart() * pixelSize + fldLeftUpPos.x);
- newseg->SetHeight((0 - s->GetHeight() * pixelSize) + fldLeftUpPos.y);//the coordinate system of segment in a field is different with the OTS coordinate system.OTS system's y axis is upward positive ,yet the field is downward positive.
- newseg->SetLength(s->GetLength());
- newSegs.push_back(newseg);
- }
- }
- COTSFeaturePtr newFeature = COTSFeaturePtr(new COTSFeature());
- newFeature->SetSegmentsList(newSegs);
- newPart->SetFeature(newFeature);
- newPart->CalCoverRect();
- //second, we get all the element data and their area percentage .
- std::map<std::string, std::vector<EleAreaPercentage>> mapEleData;
- CPosXrayPtr pXray1 = p->GetXrayInfo();
- for (auto ele : pXray1->GetElementQuantifyData())
- {
- mapEleData[ele->GetName().GetBuffer()].push_back(EleAreaPercentage(p->GetArea() / allPartArea, ele));
- }
- for (auto other : pair.second)
- {
- auto otherXray = other->GetXrayInfo();
- for (auto eledata : otherXray->GetElementQuantifyData())
- {
- mapEleData[eledata->GetName().GetBuffer()].push_back(EleAreaPercentage(other->GetArea() / allPartArea, eledata));
- }
- }
- // third,we calculate all the element's new percentage data and get a new element chemistry list.
- CElementChemistriesList newCheList;
- for (auto eledata : mapEleData)
- {
- CElementChemistryPtr newEleche = CElementChemistryPtr(new CElementChemistry());
- newEleche->SetName(CString(eledata.first.c_str()));
- double newPercentage = 0;
- for (auto d : eledata.second)
- {
- newPercentage += d.areaPercentage * d.eleData->GetPercentage();
- }
- newEleche->SetPercentage(newPercentage);
- newCheList.push_back(newEleche);
- }
- CPosXrayPtr xray(new CPosXray());
- xray->SetElementQuantifyData(newCheList);
- newPart->SetXrayInfo(xray);
- newPart->SetSubParticles(partsStr);
- newPart->SetArea(allPartArea);
- newPart->SetTagId(mergedParts.size());
- newPart->SetAnalysisId(mergedParts.size());
- std::string name = p->TypeName();
- newPart->TypeName(name);
- newPart->TypeColor(p->TypeColor());
- mergedParts.push_back(newPart);
- }
- return true;
- }
-
-
-
- }
|