Gemini CLIは、GoogleのGemini APIを活用した自律的なコード生成エージェントです。Claude Codeに似たCLIツールとして、ユーザーの要求に基づいて自動的にコードを理解、生成、修正することができます。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <opencv2/opencv.hpp> | |
| #include <k4a/k4a.hpp> | |
| int main() | |
| { | |
| try | |
| { | |
| // Kinectの接続数を取得する | |
| auto count = k4a::device::get_installed_count(); | |
| if (count == 0) { |
OlderNewer