Skip to content

Instantly share code, notes, and snippets.

View UnaNancyOwen's full-sized avatar

Tsukasa Sugiura UnaNancyOwen

View GitHub Profile
@UnaNancyOwen
UnaNancyOwen / LZ4_v1.9.4.md
Created January 9, 2024 08:15
Building lz4 with Visual Studio

Building LZ4 v1.9.4 with Visual Studio

Download

  1. LZ4 v1.9.4(lz4-1.9.4.zip)をダウンロードしてファイルを解凍する。(C:\lz4-1.9.4)
    https://github.com/lz4/lz4/releases/tag/v1.9.4

  2. CMakeLists.txtをvcpkgからダウンロードする。(C:\lz4-1.9.4\CMakeLists.txt)

@UnaNancyOwen
UnaNancyOwen / README.md
Last active December 17, 2023 04:01
Object Detection using YOLOX inferred by OpenCV DNN module

Object Detection using YOLOX inferred by OpenCV DNN module

  • Input
    dog

  • Output
    yolox_s

Download

@UnaNancyOwen
UnaNancyOwen / interactive-select-rect-in-image-using-tensorflow-colab-utils-on-google-colab.ipynb
Created May 1, 2023 09:15
Interactive Select Rect in Image using TensorFlow Colab Utils on Google Colab.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@UnaNancyOwen
UnaNancyOwen / interactive-select-rect-and-point-in-image-using-matplotlib-on-google-colab.ipynb
Last active August 25, 2023 06:35
interactive-select-rect-and-point-in-image-using-matplotlib-on-google-colab.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@UnaNancyOwen
UnaNancyOwen / FindOrbbecSDK.cmake
Created April 9, 2023 07:29
CMake Find Package Module for Orbbec SDK 1.x
#.rst:
# FindOrbbecSDK
# ---------
#
# Find Orbbec SDK include dirs, and libraries.
#
# IMPORTED Targets
# ^^^^^^^^^^^^^^^^
#
# This module defines the :prop_tgt:`IMPORTED` targets:
tench
goldfish
great white shark
tiger shark
hammerhead
electric ray
stingray
cock
hen
ostrich
@UnaNancyOwen
UnaNancyOwen / CMakeLists.txt
Last active August 10, 2022 02:17
Start Project for Point Cloud Library
cmake_minimum_required( VERSION 3.6 )
# Language
enable_language( CXX )
# Compiler Settings
set( CMAKE_CXX_STANDARD 17 )
set( CMAKE_CXX_STANDARD_REQUIRED ON )
set( CMAKE_CXX_EXTENSIONS OFF )
@UnaNancyOwen
UnaNancyOwen / matrix.py
Last active October 15, 2021 07:44
convert to matrix color
import os
import numpy as np
import cv2 as cv
def main():
# 画像を読み込む
directory = os.path.dirname(__file__)
image = cv.imread(os.path.join(directory, "image.jpg"))
if image is None:
exit()
@UnaNancyOwen
UnaNancyOwen / README.md
Created October 13, 2021 09:43
OpenCV DNN Object Detection Model (Scaled YOLOv4) Sample

OpenCV DNN Object Detection Model (Scaled YOLOv4) Sample

  • Input
    input

  • Output
    output

Download