how i can extract transition feature of a signature.
조회 수: 3 (최근 30일)
이전 댓글 표시
Transition features (TF) records the locations of transitions between foreground pixels and background pixels in a binary image, the foreground pixels being the 1’s and the background pixels being the 0’s. The image is traversed in the following four directions: left to right, right to left, top to bottom and bottom to top. Each time there is a change from ‘0’ to ‘1’ or a change from ‘1’ to ‘0’, then the ratio between the location of the transition and the length/width of the image traversed is recorded as a feature. An averaging algorithm is used to obtain values in the range 0 to 1. The ratios of the x and y positions of the transitions for each of the four directions are recorded, yielding 8 features. In addition to these 8 features, the total number of transitions is also recorded, giving a total of ten features.
댓글 수: 1
ebru temiz
2015년 1월 10일
Hi,did you solved this problem.i work signature recogniiation system.And if you have found tf features,i can use of course if you gıve me?
답변 (2개)
Walter Roberson
2011년 9월 23일
There is no provided MATLAB routine that will calculate these for you. You will need to calculate them yourself, implementing the algorithm described in your posting.
댓글 수: 0
Image Analyst
2015년 1월 10일
Sounds like you might be able to use graycomatrix() in the Image Processing Toolbox.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!