not enough input arguments
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Someone please help me with this error.If someone can help me with this please contact me with my mail id fathimanashapk@cet.ac.in
1 comentario
Respuestas (3)
DGM
el 6 de Jun. de 2021
The error is occurring because you're not providing the function odDetect with any arguments. A function will throw the error on the first line where the missing argument is needed. In this case, 'image' is missing.
As to why it's missing, nobody knows how you're calling odDetect. If you need to include the external code, include it as formatted code. Nobody can run a picture of code or scroll to parts that are hidden.
0 comentarios
Fathima Nasha
el 6 de Jun. de 2021
1 comentario
DGM
el 6 de Jun. de 2021
Editada: DGM
el 6 de Jun. de 2021
This isn't an answer. If you want to follow up with a comment on your question, post this as a comment there. If you want to post this as a comment on my answer, post it there.
We can talk once the conversation is in order, but I'll point out that nothing here calls odDetect().
Surabhi KS
el 10 de Jun. de 2021
You need to call your function with the appropriate variables.
Call odDetect with its defined variables for example:
I = imread('pathtoyourimage');
odDetect(I)
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!