Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[camera_web] Support camera image streams on the web #92460

Open
aalex opened this issue Oct 26, 2021 · 1 comment
Open

[camera_web] Support camera image streams on the web #92460

aalex opened this issue Oct 26, 2021 · 1 comment
Labels
c: new feature Nothing broken; request for a new capability c: proposal A detailed proposal for a change to Flutter p: camera The camera plugin P3 Issues that are less important to the Flutter project package flutter/packages repository. See also p: labels. platform-web Web applications specifically team-web Owned by Web platform team triaged-web Triaged by Web platform team

Comments

@aalex
Copy link

aalex commented Oct 26, 2021

Implement image camera streams on the web.

Use case

It would be useful to add support for the streaming images with the camera plugin on the web. It would allow developers to implement all kinds of use cases, including computer vision, saving images and much more.

Proposal

Add support for the streaming images with the camera plugin on the web

Example

Here is an example of how to initialize the image stream of a camera controller:

    controller = CameraController(cameras[0], ResolutionPreset.medium);
    controller.initialize().then((_) {
      if (!mounted) {
        return;
      }
      controller.startImageStream((CameraImage availableImage) {
        // Process each image here.
      });
    });

See also

@danagbemava-nc danagbemava-nc added in triage Presently being triaged by the triage team p: camera The camera plugin p: first party c: proposal A detailed proposal for a change to Flutter c: new feature Nothing broken; request for a new capability platform-web Web applications specifically and removed in triage Presently being triaged by the triage team labels Oct 26, 2021
@stuartmorgan stuartmorgan added the P3 Issues that are less important to the Flutter project label Oct 28, 2021
@flutter-triage-bot flutter-triage-bot bot added the package flutter/packages repository. See also p: labels. label Jul 5, 2023
@Hixie Hixie removed the plugin label Jul 6, 2023
@flutter-triage-bot flutter-triage-bot bot added multiteam-retriage-candidate team-web Owned by Web platform team triaged-web Triaged by Web platform team labels Jul 8, 2023
@stuartmorgan

This comment was marked as off-topic.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c: new feature Nothing broken; request for a new capability c: proposal A detailed proposal for a change to Flutter p: camera The camera plugin P3 Issues that are less important to the Flutter project package flutter/packages repository. See also p: labels. platform-web Web applications specifically team-web Owned by Web platform team triaged-web Triaged by Web platform team
Projects
None yet
Development

No branches or pull requests

4 participants