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
0 | |
SECTION | |
2 | |
HEADER | |
9 | |
$ACADVER | |
1 | |
AC1015 | |
9 | |
$ACADMAINTVER |
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
import moderngl_window as mglw | |
def run_window_config(config_cls: mglw.WindowConfig, timer=None, args=None) -> None: | |
""" | |
Run an WindowConfig entering a blocking main loop | |
Args: | |
config_cls: The WindowConfig class to render | |
args: Override sys.args | |
""" |
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
#!/usr/bin/env python | |
# | |
# SPDX-License-Identifier: MIT | |
""" | |
Given a CVAT XML and a directory with the image dataset, this script reads the | |
CVAT XML and writes the annotations in PASCAL VOC format into a given | |
directory. | |
This implementation only supports bounding boxes in CVAT annotation format, and | |
warns if it encounter any tracks or annotations that are not bounding boxes, |
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 <ccspi.h> | |
#include <Adafruit_CC3000.h> | |
#include <SPI.h> // neede for some reason here too | |
#include <Arduino.h> | |
#include "utility/socket.h" | |
#define ENABLE_NET 1 |