How to extract rectangular patches from a rotated rectangle?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi everyone,
I have to extract LBP features from a rotated rectangle section of an image. Since the extractLBPFeatures function takes as an input a NxM matrix, I thought about rotating my image to get an axis aligned rectangle. In the case of the image below I still get slanted edges because parts of the rectangle are out of the image.
So I though about creating small axis aligned rectangular patches to cover the maximum possible area of the rotate rectangle. I wasn't able to find such an alghoritm. Do you know any implementations?
Do you have any other idea how to extract the LBP features from the rotated rectangle?
Thank you in advance!
M
0 comentarios
Respuestas (2)
Kuifeng
el 5 de Abr. de 2016
% top figure
% 1. edge finding, find the two parallel long lines
% 2. use polyfit to fit the slope of the longer line
% 3. draw the lines passing the top corner perpendicular to long line
% note Slope_longEdge * Slope_shortEdge = -1;
1 comentario
Image Analyst
el 5 de Abr. de 2016
Attached is my demo of local binary pattern of an image. Adapt as needed.
0 comentarios
Ver también
Categorías
Más información sobre Code Generation, GPU, and Third-Party Support en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!