Skip to content

Camera images are not display in P2D, P3D mode on macOS 10.15(2.0 beta 4) #133

@jaegonlee

Description

@jaegonlee

Camera images are not displayed in P2D or P3D mode on macOS 10.5(2.0 beta 4)

if (cam.available()) {
  cam.read();
}
image(cam,0,0);  // not displayed

But it's ok when I added cam.loadPixels() and cam.updatePixels() below cam.read()

if (cam.available()) {
  cam.read();
  cam.loadPixels();
  cam.updatePixels(); 
}
image(cam,0,0); // ok

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions