Skip to content

A tool for unity to capture camera image and save to a specified path.

License

Notifications You must be signed in to change notification settings

wolf-org/CameraImageCapture

 
 

Repository files navigation

Unity Camera Image Capture

version license

Capture camera image and save to a specified path.

Demo Gif

Full Documentation

Installation instructions

Add the line below to Packages/manifest.json

for version 1.0.0

"net.suisuishou.cameraimagecapture":"https://github.com/wolf-org/CameraImageCapture.git#1.0.0",

Quick Start

Recommend use component Capture with config

Create a config asset by click the plus button in the Project window and follow Camera Image Capture/Capturer config

CaptureConfig.gif

Editor

Component

  1. Add component CameraImageCapture to a GameObject via Camera Image Capture/CameraImageCapture

  2. Config CameraImageCapture value in the Inspector.

    • Target Camera : Target camera for capture

    • File Name : The name of captured image file

    • Export folder : The folder for the captured image file.

    • Image serialized : Is the image file name serialized. If set to true, the file name will be [fileName]-0.jpg [fileName]-1.jpg ...

    • Is Log Capture : Is log capture information when image captured

    • Write type :

      • Main Thread: Write the file in main thread. It will block the main thread
      • Async: Write the file asynchronous. Caution use this type in MonoBehavior.Update() function
    • Image format : PNG JPG TGA

    • Is Override Camera Resolution : False to set your own image resolution. Image will follow target camera FOV Axis

  3. Click Capture and save button for capturing

EditorWindow

  1. Open Camera Image Capture window via Tools/Camera Image Capture/Capturer

  2. Add and Config CaptureConfig value in the Inspector.

  3. Click Capture and save button for capturing

Runtime

Static Singleton

using SuiSuiShou.CIC.Core;
using UnityEngine;

public class SampleScript : MonoBehaviour
{
    void Start()
    {
        Photographer.IsImageSerial = false;
        Photographer.ImageResolution = new Vector2Int(1920, 1080);
        Photographer.CaptureAndSaveImage();
    }
}

Component

  1. Assign the CameraImageCapture component in your code

  2. Call CameraImageCapture.CaptureAndSaveImage()

  3. CameraImageCapture fields can changed during runtime

    Code Sample

using SuiSuiShou.CIC.Core;
using UnityEngine;

public class SampleScript : MonoBehaviour
{
    public CameraImageCapture cic;

    private void Start()
    {
        cic.FileName = "Sample";
        cic.ImageResolution = new Vector2Int(1920, 1080);
        cic.CaptureAndSaveImage();
    }
}

About

A tool for unity to capture camera image and save to a specified path.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%