Step function with a slanted edge
Afficher commentaires plus anciens
Hi,
I want to write a code for a step function with its edge slanted at a small angle. I could write a code for simple step function but I want to give an angle to its edge. In addition to that, I want to give pixel value to my step function to be 100x100. How can I do that?
function out = step_1(x)
out = 0 * x;
out(find(x==0))=0.5;
out(find(x>0)) = 1;
end
Réponses (1)
Image Analyst
le 23 Juil 2017
0 votes

3 commentaires
Swati Jain
le 23 Juil 2017
Image Analyst
le 23 Juil 2017
That's just a notice. You can ignore it. See attached demo for more info on how to zoom.
Image Analyst
le 24 Juil 2017
Yes, warnings are in orange text, and real errors are in red text.
Catégories
En savoir plus sur Image Processing Toolbox dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!