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 json | |
from labelme.utils import shapes_to_label | |
filepath = "orthophotoNF.json" # Use your own filename | |
# Load the JSON file | |
with open(filepath, "r",encoding="utf-8") as f: | |
ortho_json = json.load(f) | |
# Get height and width of original image |
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
#!/bin/bash | |
######################################### | |
# This script installs Julia-1.7.2 with | |
# some basic packages. After installation | |
# Julia can be accessed just by typing | |
# julia in the terminal. | |
########################################## | |
rm -r ~/julia |