In a MATLAB GUI I have a picture in the background (created on axes) and over it I would like to have text. I put a static text box but I need it to be transparent. Can I do it using GUIDE?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t use guide to do this, since the text objects are actually uicontrols. Try adding the text using the
textfunction in your code instead. You may have to trial-and-error it in to the right location.