CN103729851B - Image partition method based on notable transitional region - Google Patents

Image partition method based on notable transitional region Download PDF

Info

Publication number
CN103729851B
CN103729851B CN201410004334.6A CN201410004334A CN103729851B CN 103729851 B CN103729851 B CN 103729851B CN 201410004334 A CN201410004334 A CN 201410004334A CN 103729851 B CN103729851 B CN 103729851B
Authority
CN
China
Prior art keywords
segmentation
pixel
transitional region
image
threshold
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201410004334.6A
Other languages
Chinese (zh)
Other versions
CN103729851A (en
Inventor
李佐勇
刘伟霞
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Huiyun Data Application Fuzhou Co ltd
Original Assignee
Minjiang University
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Minjiang University filed Critical Minjiang University
Priority to CN201410004334.6A priority Critical patent/CN103729851B/en
Publication of CN103729851A publication Critical patent/CN103729851A/en
Application granted granted Critical
Publication of CN103729851B publication Critical patent/CN103729851B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Abstract

The present invention relates to a kind of image partition method based on notable transitional region, it is characterised in that comprise the steps: step S01: read image to be split;Step S02: extract the transitional region of image;Step S03: filter out notable transitional region;Step S04: determine segmentation threshold, perform Threshold segmentation, obtain binarization segmentation result;Step S05: performance objective region is screened, obtained final segmentation result.The present invention is analyzing on the basis of existing image Segmentation Technology defect, it is proposed that a kind of new image segmentation algorithm based on notable transitional region.New algorithm substantially overcomes the defect of global threshold segmentation, improves segmentation effect greatly, also has that realization simple, easy, real-time be good, the feature of good stability.

Description

Image partition method based on notable transitional region
Technical field
The invention belongs to technical field of image processing, be mainly used in and the target in image is extracted, provide foundation for target recognition etc..
Background technology
Image segmentation is the technology utilizing characteristics of image to carry out Objective extraction in image procossing.It is the crucial pre-treatment step of graphical analysis and understanding.Image Segmentation Technology has been widely used for the field such as biomedical image analysis, target recognition.Image segmentation algorithm substantially can be divided three classes: the method based on border, the method based on region and mixed method.
Focus on the change of image under consideration local feature based on the image segmentation algorithm on border, by finding the zone of transition (border or edge) between target and background, target is separated from background.The Typical Representative of this kind of method is edge detection operator and figure segmentation method.Edge detection operator is when detecting edge, it is easy to edge breaks or unnecessary background or the numerous and diverse edge problem of target internal occurs, brings difficulty to target recognition.In recent years, figure segmentation method obtains researcher and pays close attention to widely.This kind of method regards non-directed graph as image, and image segmentation problem is converted into Graph partition problem.Typical figure cuts algorithm and includes standard and cut (Normalizedcut) and isoperimetric cuts (Isoperimetriccut).Standard cut generally only to have high-contrast, simple background single goal image segmentation better.The segmentation effect that isoperimetric cuts often is better than standard and cuts, but it is to having low contrast or multiobject image segmentation is not good enough.
Focus on the uniformity in image under consideration region based on the partitioning algorithm in region, merge including region growing, regional split, cluster and Threshold segmentation.Wherein, Threshold segmentation is widely used because of it is simple, real-time is good feature.Threshold Segmentation Algorithm can be simply divided into global threshold and local adaptive threshold fuzziness two class.The former first selectes a gray scale as global threshold, then divides the image into target and background two class according to this threshold value in conjunction with pixel gray scale, it is achieved segmentation.Global threshold segmentation cannot process target and background and there is the image that gray scale is overlapping, because the full segmentation of target will certainly cause the background pixel with overlapping gray scale to be divided into target by mistake.Local auto-adaptive Threshold Segmentation Algorithm determines segmentation threshold according to pixel local neighborhood content-adaptive, alleviates the problems referred to above to a certain extent, but its effect is still not good enough.
Mixed type dividing method is intended to the accurate segmentation simultaneously utilizing border and area information to realize target.Such as, 2010, Chen etc. proposed a kind of dual threshold image binaryzation dividing method.The method fully utilizes rim detection, region growing and Threshold sementation to realize image segmentation.The quality of its segmentation effect depends critically upon the edge detection results of Canny operator.And Canny operator easily detects numerous and diverse and useless target and background intra-zone edge, cause the dramatic decrease of segmentation effect.Threshold Segmentation Algorithm based on transitional region determines a segmentation threshold first with the image transition zone with class marginal texture, and then performs global threshold segmentation, belongs to a simple mixed type image Segmentation Technology of class.This kind of method substantially still falls within global threshold segmentation category, remains the drawbacks described above of global threshold segmentation.
Summary of the invention
In order to alleviate the defect that said method exists in image segmentation process, the present invention from definition transitional region significance, it is proposed to a kind of New image segmentation method based on notable transitional region, improve image segmentation accuracy and robustness.
The present invention adopts below scheme to realize: a kind of image partition method based on notable transitional region, it is characterised in that comprise the steps:
Step S01: read image to be split;
Step S02: extract the transitional region of image;
Step S03: filter out notable transitional region;
Step S04: determine segmentation threshold, perform Threshold segmentation, obtain binarization segmentation result;
Step S05: performance objective region is screened, obtained final segmentation result.
In an embodiment of the present invention, the detailed process extracting image transition zone in described step S02 is as follows:
Step S021: selected neighborhood window size m, calculate each pixel p according to formula (1)i,jThe gray variance of corresponding m × m neighborhood window Ω, wherein (x y) represents pixel p in window Ω to fx,yGray scale,Represent the gray average of window Ω:
Lv ( i , j ) = Σ x = 1 m Σ y = 1 m ( f ( x , y ) - f ‾ ) 2 m 2 - 1 - - - ( 1 )
Step S022: build the matrix of all pixel correspondence local variances:
Lv = Lv ( 1,1 ) Lv ( 1,2 ) . . . . . . Lv ( 1 , n w ) Lv ( 2,1 ) Lv ( 2,2 ) . . . . . . Lv ( 2 , n w ) . . . . . . . . . . . . . . . Lv ( n h , 1 ) Lv ( n h , 2 ) . . . . . . Lv ( n h , n w ) - - - ( 2 )
In formula, nhAnd nwThe height of difference representative image and width;
Step S023: all elements in matrix L v is carried out descending, arranges local variance value pixel corresponding to the N number of element of forward α and is considered as transitional region pixel, the sum of all pixels of N representative image, and α is a parameter;All transitional region pixels constitute the transitional region of image, and its formalized description is a two values matrix TR, wherein 1 and 0 represent transitional region pixel and rest of pixels point respectively.
In an embodiment of the present invention, the detailed process filtering out notable transitional region in described step S03 is as follows:
Step S031: pixel in bianry image TR is mapped as the node in figure, calculates the pixel number that in all connected components that under 8 connectivity structures, transitional region pixel is constituted, each connected component comprises;
Step S032: the transitional region connected component having maximum pixel is considered as notable transitional region, its formalized description is a two values matrix STR, wherein 1 and 0 represents notable transitional region pixel and rest of pixels point respectively.
In an embodiment of the present invention, determining segmentation threshold in described step S04, the process performing Threshold segmentation is divided into two big steps, and the first determines that candidate thresholds is interval, and it two is determine segmentation threshold from candidate thresholds interval, performs Threshold segmentation;
Described determine that the interval process of candidate thresholds is as follows:
Step S0411: calculate the gray average T of transitional region pixelm;
Step S0412: determine that candidate thresholds interval R is:
R=[t1t2]∩[0255](3)
t1=Tm-0.2×σ(4)
t2=Tm+0.2×σ(5)
Wherein, σ represents the gray standard deviation of entire image;
Described determine segmentation threshold, perform Threshold segmentation process as follows:
Step S0421: an arbitrarily selected gray scale t from candidate thresholds interval, the Threshold segmentation result B of its correspondence is sought according to following formulat
B t ( i , j ) = 1 if ( i , j ) > t , 0 otherwise . - - - ( 6 )
Step S0422: calculate BtThe number of middle target pixel points and background pixel point, if object pixel number NoMore than background pixel number Nb, then to BtPerform following turning operation:
B t = B ‾ t if N o > N b , B t otherwise . - - - ( 7 )
B ‾ t ( i , j ) = 0 if B t ( i , j ) = 1 , 1 if B t ( i , j ) = 0 . - - - ( 8 )
The purpose of above-mentioned turning operation be to ensure that Threshold segmentation after binarization segmentation result in 1 and 0 represent real object pixel and background pixel respectively;
Step S0423: calculate BtThe pixel number that middle target is overlapping with notable transitional region:
N ( t ) = Σ i Σ j ( B t ( i , j ) × STR ( i , j ) ) - - - ( 9 )
Step S0424: determine segmentation threshold T* according to following formula:
T * = Arg max t ∈ R { N ( t ) } - - - ( 10 )
Step S0425: using T* as global threshold, performs Threshold segmentation, it is thus achieved that image binaryzation segmentation result BT*
In an embodiment of the present invention, performance objective region screening in described step S05, it is thus achieved that the detailed process of final segmentation result is as follows:
Step S051: calculate BT*Middle target pixel points and background pixel point number, if object pixel number is more than background pixel number, then to BT*Perform and BtIdentical turning operation, to ensure BT*In 1 and 0 represent real object pixel and background pixel respectively;
Step S052: calculate the pixel number that under 8 connectivity structures, each target connected component is overlapping with notable transitional region, if number is 0, then this target connected component is become background, rejected from segmentation result;
Step S053: performed the B after above-mentioned rejecting operationT*It is final segmentation result.
In an embodiment of the present invention, also include adopting misclassification error ME (MisclassificationError) to evaluate the quality of image after segmentation.
The present invention is analyzing on the basis of existing image Segmentation Technology defect, it is proposed that a kind of new image segmentation algorithm based on notable transitional region.New algorithm substantially overcomes the defect of global threshold segmentation, improves segmentation effect greatly, also has that realization simple, easy, real-time be good, the feature of good stability.
Accompanying drawing explanation
Fig. 1 is the inventive method schematic flow sheet.
Fig. 2 is the visualization segmentation result of the first group of experiment adopting the inventive method.
Fig. 3 is the segmentation result of the second group of experiment adopting the inventive method.
Fig. 4 is the segmentation result of the 3rd group of experiment adopting the inventive method.
Detailed description of the invention
Below in conjunction with drawings and Examples, the present invention will be further described.
As it is shown in figure 1, the present invention provides a kind of image partition method based on notable transitional region, it is characterised in that comprise the steps:
Step S01: read image to be split;
Step S02: extract the transitional region of image;
Step S03: filter out notable transitional region;
Step S04: determine segmentation threshold, perform Threshold segmentation, obtain binarization segmentation result;
Step S05: performance objective region is screened, obtained final segmentation result.
In embodiments of the present invention, in above-mentioned flow chart, the detailed process extracting image transition zone is as follows:
(1) selected neighborhood window size m, calculates each pixel p according to formula (1)i,jThe gray variance of corresponding m × m neighborhood window Ω, wherein (x y) represents pixel p in window Ω to fx,yGray scale,Representing the gray average of window Ω, σ is the symbol representing standard deviation in mathematics, it square refer to variance:
Lv ( i , j ) = Σ x = 1 m Σ y = 1 m ( f ( x , y ) - f ‾ ) 2 m 2 - 1 - - - ( 1 )
(2) matrix of all pixel correspondence local variances is built:
Lv = Lv ( 1,1 ) Lv ( 1,2 ) . . . . . . Lv ( 1 , n w ) Lv ( 2,1 ) Lv ( 2,2 ) . . . . . . Lv ( 2 , n w ) . . . . . . . . . . . . . . . Lv ( n h , 1 ) Lv ( n h , 2 ) . . . . . . Lv ( n h , n w ) - - - ( 2 )
In formula, nhAnd nwThe height of difference representative image and width.
(3) all elements in matrix L v being carried out descending, local variance value arranges pixel corresponding to the N number of element of forward α and is considered as transitional region pixel, the sum of all pixels of N representative image, α is a parameter.All transitional region pixels constitute the transitional region of image, and its formalized description is a two values matrix TR, wherein 1 and 0 represent transitional region pixel and rest of pixels point respectively.
In above-mentioned flow chart, the detailed process filtering out notable transitional region is as follows:
(1) pixel in bianry image TR is mapped as the node in figure, calculates the pixel number that in all connected components that under 8 connectivity structures, transitional region pixel is constituted, each connected component comprises;
(2) the transitional region connected component having maximum pixel being considered as notable transitional region, its formalized description is a two values matrix STR, wherein 1 and 0 represents notable transitional region pixel and rest of pixels point respectively.
Determining segmentation threshold, the process performing Threshold segmentation is divided into two big steps, and the first determines that candidate thresholds is interval, and it two is determine segmentation threshold from candidate thresholds interval, performs Threshold segmentation.
Determine that the process in candidate thresholds interval is as follows:
(1) the gray average T of transitional region pixel is calculatedm
(2) determine that candidate thresholds interval R is:
R=[t1t2]∩[0255](3)
t1=Tm-0.2×σ(4)
t2=Tm+0.2×σ(5)
Wherein, σ represents the gray standard deviation of entire image;
Determine segmentation threshold, perform Threshold segmentation process as follows:
(1) an arbitrarily selected gray scale t from candidate thresholds interval, seeks the Threshold segmentation result B of its correspondence according to following formulat
B t ( i , j ) = 1 if ( i , j ) > t , 0 otherwise . - - - ( 6 )
(2) B is calculatedtThe number of middle target pixel points and background pixel point, if object pixel number NoMore than background pixel number Nb, then to BtPerform following turning operation:
B t = B ‾ t if N o > N b , B t otherwise . - - - ( 7 )
B ‾ t ( i , j ) = 0 if B t ( i , j ) = 1 , 1 if B t ( i , j ) = 0 . - - - ( 8 )
The purpose of above-mentioned turning operation be to ensure that Threshold segmentation after binarization segmentation result in 1 and 0 represent real object pixel and background pixel respectively.
(3) B is calculatedtThe pixel number that middle target is overlapping with notable transitional region:
N ( t ) = Σ i Σ j ( B t ( i , j ) × STR ( i , j ) ) - - - ( 9 )
(4) segmentation threshold T* is determined according to following formula:
T * = Arg max t ∈ R { N ( t ) } - - - ( 10 )
(5) using T* as global threshold, Threshold segmentation is performed, it is thus achieved that image binaryzation segmentation result BT*
Performance objective region is screened, it is thus achieved that the detailed process of final segmentation result is as follows:
(1) B is calculatedT*Middle target pixel points and background pixel point number, if object pixel number is more than background pixel number, then to BT*Perform and BtIdentical turning operation, to ensure BT*In 1 and 0 represent real object pixel and background pixel respectively.
(2) calculate the pixel number that under 8 connectivity structures, each target connected component is overlapping with notable transitional region, if number is 0, then this target connected component is become background, rejected from segmentation result.
(3) B after above-mentioned rejecting operation has been performedT*It is final segmentation result.
In order to quantify the difference of various method segmentation quality, the present invention adopts misclassification error ME (MisclassificationError) to evaluate the quality of image after segmentation.ME reflects that background pixel is mistakenly classified as target, and object pixel is divided into the percentage ratio of background by mistake.For two class segmentation problems, ME can be simply expressed as:
ME = 1 - | B O ∩ B T | + | F O ∩ F T | | B O | + | F O | - - - ( 11 )
(11) in formula, BOAnd FORepresent the set of reference picture background pixel and object pixel, B respectivelyTAnd FTFor the set of background pixel in segmentation result and object pixel, |. | represent the number of set element.Reference picture Visual Observations Observations according to us manually obtains.The span of ME is 0 to 1, the 0 perfect segmentation representing that inerrancy classification occurs, and 1 represents the situation of all pixels all mistake classification.The value of ME is more big, and after corresponding segmentation, the quality of image is more poor.
The a series of images that resolution is 200 × 200 has been carried out emulation experiment by us, uses Matlab7.0 programming, and experiment operates on association's Thinkpad notebook of 1.7GHz Intel Duo i5-3317CPU, 4GB internal memory.Inventive algorithm and classical edge detection operator (Canny), famous standard cuts algorithm (Ncut), isoperimetric figure cuts algorithm (Isocut), contrast based on the global threshold partitioning algorithm (PWT) of Parzen window setting technique, local auto-adaptive Threshold Segmentation Algorithm (Niblack), dual threshold Binarization methods (DTIB) and three kinds of Threshold Segmentation Algorithm based on transitional region (LE, LGLD and MLE).LE adopts the local window of 7 × 7, and LGLD, MLE and inventive algorithm all adopt the local window of 3 × 3, and 4 kinds of algorithms extract equal number of transitional region pixel.What obtain due to tri-kinds of methods of Canny, Ncut and Isocut is edge image, is not suitable for carrying out quantitative segmentation quality evaluation with ME.Therefore, we only show the segmentation result of three kinds of methods in the visualization segmentation result often organize experiment, carry out segmentation effect intuitively for reader and compare.
Testing the natural image being contained median size target by 10 width for first group to constitute, the parameter alpha relevant to transitional region number of pixels is set to 0.03.Table 1 gives the ME measure value that each image is split gained by various algorithm.Data from table are it is observed that inventive algorithm is to the corresponding minimum ME value of the segmentation result of front 8 width images, it was shown that the mistake of inventive algorithm divides rate minimum, and segmentation effect is best.To last two width images, inventive algorithm obtains second and the 3rd little ME value respectively, it was shown that the mistake of inventive algorithm divides rate in all algorithms or smaller, and segmentation effect is ideal.Visualization segmentation result shown in Fig. 2 also demonstrate that the effectiveness of inventive algorithm, and in figure, each row from top to bottom represents the segmentation result (Canny, Ncut, Isocut, PWT, DTIB, Niblack, LGLD, LE, MLE and inventive algorithm) of original image, desirable segmentation result, 10 kinds of algorithms respectively.
Testing the natural image being contained Small object by 4 width for second group to constitute, the parameter alpha relevant to transitional region number of pixels is set to 0.01.Fig. 3 illustrates the various algorithm visualization segmentation result to this group image, and in figure, each row from left to right represent the segmentation result (Canny, Ncut, Isocut, PWT, DTIB, Niblack, LGLD, LE, MLE and inventive algorithm) of original image, desirable segmentation result, 10 kinds of algorithms respectively.From the figure, it can be seen that inventive algorithm gained segmentation result and the 2nd desirable segmentation result corresponding to row in figure closest to, segmentation effect is good.Last width figure, it is shown that front 3 width images are achieved minimum mistake point rate ME by inventive algorithm, is achieved the second little mistake point rate, further demonstrate that the segmentation effect that inventive algorithm is good by the segmentation quantitative quality evaluation of table 2.
3rd group of experiment is contained multiobject natural image by 4 width and constitutes.Perform in the process of this group experiment, we eliminate and pick out this step of notable transitional region from transitional region, because single notable transitional region often can only corresponding single target, and the image that this group is tested comprises multiple target, it should have multiple notable transitional region.For this, we dispense notable transitional region and screen this step, but all transitional regions extracted directly are considered as notable transitional region, and then perform follow-up algorithm steps.Table 3 gives the ME measure value that each image is split gained by various algorithm.Data from table are it is observed that front 3 width images are achieved minimum ME value by inventive algorithm, it was shown that the mistake of inventive algorithm divides rate minimum, and segmentation effect is best.To last piece image, inventive algorithm obtains the second little mistake point rate, and segmentation effect is only second to DTIB.Visualization segmentation result shown in Fig. 4 further demonstrate that the effectiveness of inventive algorithm.
Inventive algorithm relates to two parameters, i.e. m and α.The two parameter is all used in the process that image transition zone is extracted, and m represents neighborhood window size, and α is used for determining transitional region pixel number.In order to provide the zone of reasonableness of algorithm parameter, two parameters are discussed by respectively.One of them parameter is fixed in employing, and the totally 14 width images of first group and second group experiment have been tested by the mode changing another parameter.
Table 4~5 sets forth under 7 kinds of different neighborhood windows, inventive algorithm test gained ME value.From table 4~5 it can be seen that local window size m is less on the impact of inventive algorithm performance.Therefore, the preferred span of m is 3~15.In order to improve the operational efficiency of algorithm, the value of usual m is 3.
Table 6~7 sets forth under 5 kinds of α, the ME value that during m=3, inventive algorithm is corresponding.From table 6~7 it can be seen that inventive algorithm performance on first group of image is less by the impact of α value change, and it is subject to the impact that α value changes bigger on second group of image.In general, inventive algorithm is insensitive to parameter m, and parameter alpha is more sensitive.The preferred value of α is determined by rule of thumb according to target sizes in image.
The foregoing is only presently preferred embodiments of the present invention, all equalizations done according to the present patent application the scope of the claims change and modify, and all should belong to the covering scope of the present invention.

Claims (3)

1. the image partition method based on notable transitional region, it is characterised in that comprise the steps:
Step S01: read image to be split;
Step S02: extract the transitional region of image;
Step S03: filter out notable transitional region;
Step S04: determine segmentation threshold, perform Threshold segmentation, obtain binarization segmentation result;
Step S05: performance objective region is screened, obtained final segmentation result,
Wherein, the detailed process extracting image transition zone in described step S02 is as follows:
Step S021: selected neighborhood window size m, calculate each pixel p according to formula (1)i,jThe gray variance of corresponding m × m neighborhood window Ω, wherein (x y) represents pixel p in window Ω to fx,yGray scale,Represent the gray average of window Ω:
Step S022: build the matrix of all pixel correspondence local variances:
In formula, nhAnd nwThe height of difference representative image and width;
Step S023: all elements in matrix L v is carried out descending, arranges local variance value pixel corresponding to the N number of element of forward α and is considered as transitional region pixel, the sum of all pixels of N representative image, and α is a parameter;All transitional region pixels constitute the transitional region of image, and its formalized description is a two values matrix TR, wherein 1 and 0 represent transitional region pixel and rest of pixels point respectively;
Wherein, the detailed process filtering out notable transitional region in described step S03 is as follows:
Step S031: pixel in bianry image TR is mapped as the node in figure, calculates the pixel number that in all connected components that under 8 connectivity structures, transitional region pixel is constituted, each connected component comprises;
Step S032: the transitional region connected component having maximum pixel is considered as notable transitional region, its formalized description is a two values matrix STR, wherein 1 and 0 represents notable transitional region pixel and rest of pixels point respectively;
Wherein, determining segmentation threshold in described step S04, the process performing Threshold segmentation is divided into two big steps, and the first determines that candidate thresholds is interval, and it two is determine segmentation threshold from candidate thresholds interval, performs Threshold segmentation;
Described determine that the interval process of candidate thresholds is as follows:
Step S0411: calculate the gray average T of transitional region pixelm
Step S0412: determine that candidate thresholds interval R is:
R=[t1t2]∩[0255](3)
t1=Tm-0.2×σ(4)
t2=Tm+0.2×σ(5)
Wherein, σ represents the gray standard deviation of entire image;
Described determine segmentation threshold, perform Threshold segmentation process as follows:
Step S0421: an arbitrarily selected gray scale t from candidate thresholds interval, the Threshold segmentation result B of its correspondence is sought according to following formulat:
Step S0422: calculate BtThe number of middle target pixel points and background pixel point, if object pixel number NoMore than background pixel number Nb, then to BtPerform following turning operation:
The purpose of described turning operation be to ensure that Threshold segmentation after binarization segmentation result in 1 and 0 represent real object pixel and background pixel respectively;
Step S0423: calculate BtThe pixel number that middle target is overlapping with notable transitional region:
Step S0424: determine segmentation threshold T* according to following formula:
Step S0425: using T* as global threshold, performs Threshold segmentation, it is thus achieved that image binaryzation segmentation result BT*
2. the image partition method based on notable transitional region according to claim 1, it is characterised in that: performance objective region screening in described step S05, it is thus achieved that the detailed process of final segmentation result is as follows:
Step S051: calculate BT*Middle target pixel points and background pixel point number, if object pixel number is more than background pixel number, then to BT*Perform and BtIdentical turning operation, to ensure BT*In 1 and 0 represent real object pixel and background pixel respectively;
Step S052: calculate the pixel number that under 8 connectivity structures, each target connected component is overlapping with notable transitional region, if number is 0, then this target connected component is become background, rejected from segmentation result;
Step S053: performed the B after above-mentioned rejecting operationT*It is final segmentation result.
3. the image partition method based on notable transitional region according to claim 1, it is characterised in that: also include adopting misclassification error ME (MisclassificationError) to evaluate the quality of image after segmentation.
CN201410004334.6A 2014-01-04 2014-01-04 Image partition method based on notable transitional region Active CN103729851B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201410004334.6A CN103729851B (en) 2014-01-04 2014-01-04 Image partition method based on notable transitional region

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201410004334.6A CN103729851B (en) 2014-01-04 2014-01-04 Image partition method based on notable transitional region

Publications (2)

Publication Number Publication Date
CN103729851A CN103729851A (en) 2014-04-16
CN103729851B true CN103729851B (en) 2016-06-29

Family

ID=50453912

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201410004334.6A Active CN103729851B (en) 2014-01-04 2014-01-04 Image partition method based on notable transitional region

Country Status (1)

Country Link
CN (1) CN103729851B (en)

Families Citing this family (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104537681A (en) * 2015-01-21 2015-04-22 北京联合大学 Method and system for extracting spectrum-separated visual salient region
CN105528784B (en) * 2015-12-02 2019-01-25 沈阳东软医疗系统有限公司 A kind of method and apparatus of prospect background segmentation
CN107580160A (en) * 2016-06-30 2018-01-12 比亚迪股份有限公司 Remove method, image processor and the camera arrangement in sunspot region in image
CN106408584A (en) * 2016-09-14 2017-02-15 北京环境特性研究所 Infrared image target screening method and system
CN109658382B (en) * 2018-11-16 2023-05-30 福建中医药大学 Tongue positioning method based on image clustering and gray projection

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1702684A (en) * 2005-04-06 2005-11-30 北京航空航天大学 Strong noise image characteristic points automatic extraction method
CN102136058A (en) * 2011-04-26 2011-07-27 中国农业大学 Bar code image identification method
CN103364410A (en) * 2013-07-23 2013-10-23 三峡大学 Crack detection method of hydraulic concrete structure underwater surface based on template search

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8306283B2 (en) * 2009-04-21 2012-11-06 Arcsoft (Hangzhou) Multimedia Technology Co., Ltd. Focus enhancing method for portrait in digital image

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1702684A (en) * 2005-04-06 2005-11-30 北京航空航天大学 Strong noise image characteristic points automatic extraction method
CN102136058A (en) * 2011-04-26 2011-07-27 中国农业大学 Bar code image identification method
CN103364410A (en) * 2013-07-23 2013-10-23 三峡大学 Crack detection method of hydraulic concrete structure underwater surface based on template search

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
Modified Variance-based Transition Region;Li Zuoyong;《Image and Signal Processing(CISP),2012 5th International Congress on》;20121018;第684-687页 *
基于模糊理论的图像分割区域法研究;刘锁兰;《中国博士学位论文全文数据库 信息科技辑》;20081130;第70页第4.5.2节 *
基于统计和谱图的图像阈值分割方法研究;李佐勇;《中国博士学位论文全文数据库 信息科技辑》;20100831;第76-79页第4.6.1-4.6.4节,第80页图4.17,第81页表4 *

Also Published As

Publication number Publication date
CN103729851A (en) 2014-04-16

Similar Documents

Publication Publication Date Title
CN106056751B (en) The recognition methods and system of serial number
CN103729851B (en) Image partition method based on notable transitional region
CN103530600B (en) Licence plate recognition method under complex illumination and system
JP6710135B2 (en) Cell image automatic analysis method and system
EP3343440A1 (en) Identifying and excluding blurred areas of images of stained tissue to improve cancer scoring
US8442319B2 (en) System and method for classifying connected groups of foreground pixels in scanned document images according to the type of marking
US8761514B2 (en) Character recognition apparatus and method based on character orientation
CN104077577A (en) Trademark detection method based on convolutional neural network
CN103824373B (en) A kind of bill images amount of money sorting technique and system
CN105469046B (en) Based on the cascade vehicle model recognizing method of PCA and SURF features
CN103735253A (en) Tongue appearance analysis system and method thereof in traditional Chinese medicine based on mobile terminal
CN104050684A (en) Video moving object classification method and system based on on-line training
CN111815609B (en) Pathological image classification method and system based on context awareness and multi-model fusion
CN101251896A (en) Object detecting system and method based on multiple classifiers
CN107563427A (en) The method and corresponding use that copyright for oil painting is identified
CN104866850A (en) Optimized binarization method for document images
Montagner et al. Staff removal using image operator learning
CN106600615A (en) Image edge detection algorithm evaluation system and method
CN112017165A (en) Lacrimal river height detection method based on deep learning
EP4261774A1 (en) Object classification device, object classification system, and object classification program
CN203970354U (en) A kind of Tongue analytical system based on mobile terminal
Seuret et al. Pixel level handwritten and printed content discrimination in scanned documents
CN115294377A (en) System and method for identifying road cracks
CN104123538A (en) Network malicious image detection method based on visual word bag
CN103793716B (en) Multi-class traffic sign detection method based on bypass cascading

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
C14 Grant of patent or utility model
GR01 Patent grant
TR01 Transfer of patent right
TR01 Transfer of patent right

Effective date of registration: 20191219

Address after: 350000 Gulou Science and Technology Business Center Building, North Wushan Road (No. 451 Industrial Road), Gulou District, Fuzhou City, Fujian Province, Ninth Floor

Patentee after: FUJIAN HUICHUAN INTERNET OF THINGS TECHNOLOGY SCIENCE AND TECHNOLOGY CO.,LTD.

Address before: Minhou County of Fuzhou City, Fujian province 350108 Street Town Road No. 1

Patentee before: Minjiang University

TR01 Transfer of patent right
TR01 Transfer of patent right

Effective date of registration: 20240118

Address after: 3/F, Building 2A, Fuzhou Internet of Things Industrial Park, Liandong U Valley, No. 12 Xingye West Road, Mawei District, Fuzhou City, Fujian Province, 350015 (within the Free Trade Zone)

Patentee after: Huiyun data application (Fuzhou) Co.,Ltd.

Address before: 350000 9th floor, Gulou science and technology business center building, north side of Wushan West Road, Gulou District, Fuzhou City, Fujian Province

Patentee before: FUJIAN HUICHUAN INTERNET OF THINGS TECHNOLOGY SCIENCE AND TECHNOLOGY CO.,LTD.