-
Person.java
public class Person { private String name; private int age; public Person(String name, int age) { this.name = name; this.age = age;
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
from typing import Dict | |
from PIL import Image | |
from concurrent.futures import ThreadPoolExecutor | |
from pathlib import Path | |
from stich_360 import create_panorama_gpu | |
ROOT_DIR = './panorama' | |
FACES = ['f', 'b', 'l', 'r', 'u', 'd'] |
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
from concurrent.futures import ThreadPoolExecutor | |
from pathlib import Path | |
import subprocess | |
ROOT_DIR = './panorama' | |
FACES = ['f', 'b', 'l', 'r', 'u', 'd'] | |
FACE_MAP = { |
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 requests | |
import pathlib | |
from bs4 import BeautifulSoup | |
from concurrent.futures import ThreadPoolExecutor | |
import time | |
import re | |
FILE_TYPE = {'video', 'panorama', 'res', 'album', 'photo', 'audio'} | |
FACES = ['f', 'b', 'l', 'r', 'u', 'd'] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
- Write a class that represents a person's name and age.
- Write a class that represents a circle's radius and area.
- Write a class that represents a student's ID, name and score.
- Write a class that represents a bank account's account number, name and balance.
- Write a class that represents a rectangle's length and width.
- Write a class that represents a movie's name, director, and actors.