how to represent 30, 60, and 45 degree on matrix in Matlab?

11 visualizzazioni (ultimi 30 giorni)
i want to represent 30 degree,60 degree and 90 degree on matlab? just like 45 degree is represented as
[-1,-1,2;-1,2,-1;2,-1,-1]
  3 Commenti
Prerna Surbhi
Prerna Surbhi il 5 Mag 2016
i want to implement 30,60 and 90 degree line detection in an image,just like 45 degree line detection can be done by using [-1 -1 2;-1 2 -1;2 -1 -1];
Walter Roberson
Walter Roberson il 5 Mag 2016
How is that matrix being used? Is it, for example, the mask being used for conv2() ?

Accedi per commentare.

Risposta accettata

CS Researcher
CS Researcher il 5 Mag 2016
You should always give out as much information related to your question as you can. Help us to help you. I did not completely understand what you mean by representing angles in MATLAB. It is extremely vague. Do you mean rotation matrix? If yes, then it is given by (for a 3 x 3 case)
R = [ 1 0 0
0 cos(theta) sin(theta)
0 -sin(theta) cos(theta)]
The theta is in radians. How did you get the matrix that you have for 45 degrees?

Più risposte (0)

Categorie

Scopri di più su Read, Write, and Modify Image in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by