Filter löschen
Filter löschen

how to save siteviewer image from coverage function

23 Ansichten (letzte 30 Tage)
Jonathon Cheah
Jonathon Cheah am 18 Apr. 2019
Beantwortet: John K. am 19 Jan. 2021
Antenna toolbox coverage function plots propagation terrain image. How to set image size and save image in script,? If manually adjusted the size of the image, how to save the image?
  5 Kommentare
cheat morokot
cheat morokot am 14 Mai 2019
Bearbeitet: cheat morokot am 14 Mai 2019
This is image that I get from coverage of siteviewer. Follow my comment above, you will get what you want.
cheat morokot
cheat morokot am 14 Mai 2019
Bearbeitet: cheat morokot am 14 Mai 2019
You can view this video to get image from coverage function. (https://www.youtube.com/watch?v=P9Lstv0NFEI)

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Abhi Sundararaman
Abhi Sundararaman am 14 Mai 2019
Based on your responses, it looks like you want to save a snapshot of the Site Viewer window, similar to saving a figure window's contents. Unfortunately, Site Viewer doesn't currently have any functionality similar to "savefig" or "saveas" for figures. For now you'd have to use utilities like "print screen" to save an snapshot of the Site Viewer.
You also mentioned wanting to change the size and orientation of the Site Viewer via script. Unfortunately, the orientation currently cannot be set using a script. You can still set the size of the viewer by changing the last two values of the "Position" field of the viewer like so.
viewer = siteviewer;
width = 600; % screen pixels
height = 400; % screen pixels
viewer.Position(3:4) = [width height]
  1 Kommentar
Jonathon Cheah
Jonathon Cheah am 19 Mai 2019
Guess the best solution for now is windows prt screen. The solution of /apddata/temp/xx.png not having the terrain background, legends and icons is less useful. Thank you for the assistance.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

John K.
John K. am 19 Jan. 2021
Another way to capture screenshots of siteviewer directly from within Matlab is to use the screenshot diagnotic class.
png files are stored to a temporary directory and a prefix can be defined.
Create a TestCase for interactive use.
import matlab.unittest.TestCase
testCase = TestCase.forInteractiveUse;
Use a ScreenshotDiagnostic to log an image of the desktop as a test diagnostic with a custom prefix
import matlab.unittest.diagnostics.ScreenshotDiagnostic
testCase.log(ScreenshotDiagnostic('Prefix','LoggedScreenshot_'))

Kategorien

Mehr zu RF Propagation finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by