Reinforcement learning : How to define custom environment with multiple image based observations
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I am trying to create a custom agent with image based observations. How can assign an image to rlNumericSpec.
I have created ObservationInfo as follows since the image is 320X180. Normally the image is RGB even if I converted to gray I do not know how to assign in to ObservationInfo in the customer reset and step functions.
ObservationInfo = rlNumericSpec([320 180]);
Even if I solve this I require RGB images and later on more than one images.
Any ideas?
Best regards
0 Kommentare
Antworten (1)
Emmanouil Tzorakoleftherakis
am 18 Mär. 2021
ObservationInfo = rlNumericSpec([320 180 3]);
2 Kommentare
Siehe auch
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!