Navigation

    VisionAppster.com

    VisionAppster Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. cmisztur
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 9
    • Best 0
    • Groups 0

    cmisztur

    @cmisztur

    0
    Reputation
    193
    Profile views
    9
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    cmisztur Unfollow Follow

    Latest posts made by cmisztur

    • RE: MIPI Cameras

      @Topi Hmm, ok, so using Arducam's C SDK this sounds doable.

      posted in Raspberry Pi
      C
      cmisztur
    • MIPI Cameras

      Do you guys have a recipe for working with Arducam MIPI cameras? It is not v4l2.

      https://github.com/ArduCAM/MIPI_Camera/tree/master/RPI

      posted in Raspberry Pi
      C
      cmisztur
    • RE: ARM Docker Image

      @tomyri Thanks.

      version: "2.4"
      services:
        portainer:
          container_name: portainer
          image: portainer/portainer
          restart: always
          networks:
            - l99_bridge
          ports:
            - "9000:9000"
          volumes:
            - /etc/localtime:/etc/localtime:ro
            - /etc/timezone:/etc/timezone:ro
            - /var/run/docker.sock:/var/run/docker.sock
            - portainer_data:/data
          logging:
            driver: "json-file"
            options:
              max-file: "5"
              max-size: "10m"
      
        vaengine:
          container_name: vaengine
          image: visionappster/va-engine
          restart: always
          networks:
            - l99_bridge
          ports:
            - "2015:2015"
          privileged: true
          volumes:
            - /etc/localtime:/etc/localtime:ro
            - /etc/timezone:/etc/timezone:ro
            - va_packages:/opt/visionappster/packages
            - va_components:/opt/visionappster/components
            - va_licenses:/opt/visionappster/licenses
          logging:
            driver: "json-file"
            options:
              max-file: "5"
              max-size: "10m"
      
      volumes:
        portainer_data:
        va_packages:
        va_components:
        va_licenses:
      
      networks:
        l99_bridge:
          name: l99_bridge
      
      
      
      
      posted in Raspberry Pi
      C
      cmisztur
    • RE: (beta3) Remote camera "404"

      @Topi said in (beta3) Remote camera "404":

      http://192.168.2.59:2015/cameras/webcam%3Avideo0/

      I typed the cameraId, instead of selecting one and modifying cameraId. It works.

      posted in Builder
      C
      cmisztur
    • RE: (beta3) Remote camera "404"

      @Topi said in (beta3) Remote camera "404":

      remote:http://192.168.0.1 webcam:video0

      I tried a couple different cameraId combinations, but none of them worked.

      b.png

      posted in Builder
      C
      cmisztur
    • RE: (beta3) Remote camera "404"

      @Topi Thanks!

      posted in Builder
      C
      cmisztur
    • (beta3) Remote camera "404"

      Latest builder is unable to connect to remote camera on RPi4, also with latest available image. Looks like when I click on one of available remote cameras the "server responded with status code 404" warning count is incremented.
      a.png

      posted in Builder
      C
      cmisztur
    • RE: ARM Docker Image

      Looking forward to it!

      posted in Raspberry Pi
      C
      cmisztur
    • ARM Docker Image

      Hello. Do you have a Dockerfile available or a ready image for ARM? I see that va-engine on docker hub is AMD only.

      Thanks
      Chris

      posted in Raspberry Pi
      C
      cmisztur