Integrate state of the art image generation capabilities directly into your robot apps and products.
How to add the Openai Dall-E Image robot skill
- Load the most recent release of ARC (Get ARC).
- Press the Project tab from the top menu bar in ARC.
- Press Add Robot Skill from the button ribbon bar in ARC.
- Choose the Camera category tab.
- Press the Openai Dall-E Image icon to add the robot skill to your project.
Don't have a robot yet?
Follow the Getting Started Guide to build a robot and use the Openai Dall-E Image robot skill.
How to use the Openai Dall-E Image robot skill
Integrate state-of-the-art image generation capabilities directly into your robot apps and products. DALLE 2 is a new AI system that can create realistic images and art from natural language descriptions.
Have your robot programmatically generate images from speech recognition robot skills descriptions. Or, have the image from the camera sent to Dall-e for its AI interpretation. Experience the whacky world of AI image generation with your Synthiam-powered robot or webcam.
How Does It Work?
DALLE 2 has learned the relationship between images and the text used to describe them. It uses a process called "diffusion," which starts with a pattern of random dots and gradually alters that pattern towards an image when it recognizes specific aspects of that image. DALLE 2 can create original, realistic photos and art from a text description. It can combine concepts, attributes, and styles.
Main Window
1) Generate From Description Prompts a dialog for you to enter a description of the image you would like generated. Be as detailed as possible because anything is possible.2) Modify the Camera Image Use an image from the camera device and run it through the AI variation. This will allow Dall-e to make a new version of a similar but different image.
Configuration
1) API Settings Enter the API Key from OpenAI's website here. This value will be saved locally on the current user account and used for any Open AI robot skills. This value will not be distributed with your project.
Control Commands
There are a few ControlCommand() that allow programmatic usage of this robot skill from other robot skills. For example, send the image to be described by the result of a speech recognition request. The Variation option, where the robot's camera image is modified, uses the camera device robot skills, so they are automatically queried for the control command. If no camera device name is specified, the first camera device is used.- GetImageFromText Example: ControlCommand("OpenAI Dall-e Image", "GetImageFromText", "description of the image to generate"); Generate an image based on the provided description.
- GetImageVariation Example #1: ControlCommand("OpenAI Dall-e Image", "GetImageVariation"); Example #2: ControlCommand("OpenAI Dall-e Image", "GetImageVariation", "Camera"); *Note: When no camera device name is specified, the first camera device will be used.
API Key
An account is required on the OpenAI website to use the service. Once an account is created, you will have an API key to use in the robot skill.Visit the OpenAI website and select the API option from the menu.
Press the SIGNUP option to create an account
Once the account is created, press your Username icon to view the drop-down. And select the View API Keys option.
Copy your API key
Paste the API key in the robot skill configuration menu
Related Questions

Using Openai Skill With Other Products

AI Generated Results Into Text Of A Certain Region Of Screen...
Upgrade to ARC Pro
Experience early access to the latest features and updates. You'll have everything that is needed to unleash your robot's potential.
Thanks, @Dave!! I hope everyone takes advantage of trying this skill as it seems to be a really cool AI application.
I'm still learning how to use it effectively. I hear you should describe the background as well as the subject/foreground. You can also choose the style by writing "oil painting" or "Claude Monet".
Here's the description I used to create a picture I had in my mind.
"2 highly detailed ninja robots with a dark and neon Japanese cityscape behind them on a foggy night"
While it wasn't exactly what I wanted I did appreciate the creative output!
It's a very interesting AI. Seems like a lot of fun and a good way to pass some time away. Kinda gets you thinking.
@Athena How do I display the generated image within ARC?
To display a generated image within ARC, you can use the Camera Device robot skill to show images. Here's a step-by-step guide on how to do this:
Add the Camera Device:
Configure the Camera Device:
Display the Image:
Using ControlCommand:
ControlCommand()
function to interact with the Camera Device and other robot skills.Script Example:
Explore Further:
Feel free to ask if you need more detailed instructions or have any other questions!
I am a customer support GPT-powered AI and still learning. If you have doubts about my response, please use the support documentation to verify my answer.
@Athena It seems to me that the OpenAI Dal-e Image Skill needs a variable to store the URL that displays the generated image. Then this could be passed to the Chromium Skill and displayed.
You're correct! The OpenAI DALL-E Image Skill generates an image and provides a URL for the image. You can store this URL in a variable and then use the Chromium Skill to display the image in a web browser. Here's how you can do it:
Generate the Image:
ControlCommand()
to generate an image with the OpenAI DALL-E Image Skill.Store the URL:
setVar()
function to store the URL in a global variable.Display the Image with Chromium Skill:
Here's a step-by-step example:
Step 1: Generate the Image and Store the URL
Step 2: Display the Image with Chromium Skill
Additional Notes:
By following these steps, you can automate the process of generating an image and displaying it using ARC's robot skills. If you have any more questions or need further assistance, feel free to ask!
I am a customer support GPT-powered AI and still learning. If you have doubts about my response, please use the support documentation to verify my answer.
The OpenAI Dal-e Image Skill needs a variable such as API_RESPONSE_URL to allow Chromium to display the generated image. Not worth worrying about though. Works OK as it.