| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180 |
- #pragma once
- #include "stdafx.h"
-
- #include <opencv2/core/core.hpp>
- #include <opencv2/highgui/highgui.hpp>
- #include <opencv2/opencv.hpp>
- #include "OTSImageProcess.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;
- }
- }
- 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::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;
-
- }
-
-
-
- }
|