diff --git a/.dockerignore b/.dockerignore index 237bf8a..08ba2fc 100644 --- a/.dockerignore +++ b/.dockerignore @@ -17,12 +17,12 @@ !extractor/mapping/OpenSfM/setup.py !extractor/mapping/OpenSfM/viewer -!extractor/segmentation/Mask_RCNN/mrcnn -!extractor/segmentation/Mask_RCNN/MANIFEST.in -!extractor/segmentation/Mask_RCNN/README.md -!extractor/segmentation/Mask_RCNN/requirements.txt -!extractor/segmentation/Mask_RCNN/setup.cfg -!extractor/segmentation/Mask_RCNN/setup.py +!extractor/segmentation/Mask_RCNN_TF2/mrcnn +!extractor/segmentation/Mask_RCNN_TF2/MANIFEST.in +!extractor/segmentation/Mask_RCNN_TF2/README.md +!extractor/segmentation/Mask_RCNN_TF2/requirements.txt +!extractor/segmentation/Mask_RCNN_TF2/setup.cfg +!extractor/segmentation/Mask_RCNN_TF2/setup.py !requirements.txt diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..24e20e3 --- /dev/null +++ b/.env.example @@ -0,0 +1,80 @@ +# PV-Hawk Docker Environment Configuration +# Copy this file to .env and adjust the paths according to your setup + +# ============================================================================= +# DATA DIRECTORIES +# ============================================================================= + +# Directory containing your input videos and data +DATA_DIR=./data + +# Working directory for processing (will contain intermediate and final results) +WORK_DIR=./workdir + +# Directory containing configuration files (config.yml) +CONFIG_DIR=./config + +# Directory containing camera calibration parameters +CALIBRATION_DIR=./calibration + +# Directory containing model weights (mask_rcnn_*.h5 files) +MODELS_DIR=./models + +# Directory for final outputs +OUTPUT_DIR=./output + +# ============================================================================= +# API CONFIGURATION +# ============================================================================= + +# Port for the REST API server +API_PORT=8000 + +# Secret key for JWT token signing (IMPORTANT: Change in production!) +API_SECRET_KEY=pv-hawk-secret-key-change-in-production + +# Optional API key for simple authentication +API_KEY= + +# ============================================================================= +# JUPYTER DEVELOPMENT (optional) +# ============================================================================= + +# Port for Jupyter Lab (only used if running development profile) +JUPYTER_PORT=8888 + +# Jupyter token (leave empty for no token, set for security) +JUPYTER_TOKEN= + +# ============================================================================= +# GPU CONFIGURATION +# ============================================================================= + +# Which GPU to use (0 for first GPU, 1 for second, etc.) +CUDA_VISIBLE_DEVICES=0 + +# TensorFlow GPU memory growth (recommended: true) +TF_FORCE_GPU_ALLOW_GROWTH=true + +# TensorFlow logging level (0=all, 1=no info, 2=no warnings, 3=errors only) +TF_CPP_MIN_LOG_LEVEL=1 + +# ============================================================================= +# EXAMPLE PATHS (adjust to your system) +# ============================================================================= + +# Example for Linux: +# DATA_DIR=/home/user/pv-hawk/data +# WORK_DIR=/home/user/pv-hawk/workdir +# CONFIG_DIR=/home/user/pv-hawk/config +# CALIBRATION_DIR=/home/user/pv-hawk/calibration +# MODELS_DIR=/home/user/pv-hawk/models +# OUTPUT_DIR=/home/user/pv-hawk/output + +# Example for Windows (use forward slashes or double backslashes): +# DATA_DIR=C:/Users/user/pv-hawk/data +# WORK_DIR=C:/Users/user/pv-hawk/workdir +# CONFIG_DIR=C:/Users/user/pv-hawk/config +# CALIBRATION_DIR=C:/Users/user/pv-hawk/calibration +# MODELS_DIR=C:/Users/user/pv-hawk/models +# OUTPUT_DIR=C:/Users/user/pv-hawk/output \ No newline at end of file diff --git a/.gitignore b/.gitignore index 87de3dc..5266189 100755 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,9 @@ __pycache__ .ipynb_checkpoints .vscode - +.ve +.venv +.vevn_tf2 debug.txt docker_command.txt @@ -12,15 +14,23 @@ htmlcov .hypothesis .mutmut-cache -extractor/segmentation/Mask_RCNN/logs -extractor/segmentation/Mask_RCNN/mask_rcnn_coco.h5 -extractor/segmentation/Mask_RCNN/mask_rcnn_pv_modules_0120.h5 -extractor/segmentation/Mask_RCNN/mask_rcnn_pv_modules_rgb_0059.h5 -extractor/segmentation/Mask_RCNN/build/ -extractor/segmentation/Mask_RCNN/dist/ -extractor/segmentation/Mask_RCNN/mask_rcnn.egg-info/ +extractor/segmentation/Mask_RCNN_TF2/logs +extractor/segmentation/Mask_RCNN_TF2/mask_rcnn_coco.h5 +extractor/segmentation/Mask_RCNN_TF2/mask_rcnn_pv_modules_0120.h5 +extractor/segmentation/Mask_RCNN_TF2/mask_rcnn_pv_modules_rgb_0059.h5 +extractor/segmentation/Mask_RCNN_TF2/build/ +extractor/segmentation/Mask_RCNN_TF2/dist/ +extractor/segmentation/Mask_RCNN_TF2/mask_rcnn.egg-info/ calibration/camera_8hz/images_undistorted calibration/camera_30hz/images_undistorted docs/build + +# Test outputs and temporary files +test_output/ +*.tmp +*.log + +# Version control files from cloned repositories +=* diff --git a/DOCKER_USAGE.md b/DOCKER_USAGE.md new file mode 100644 index 0000000..ff4bf2e --- /dev/null +++ b/DOCKER_USAGE.md @@ -0,0 +1,328 @@ +# PV-Hawk Docker Usage Guide + +This guide provides comprehensive instructions for running PV-Hawk using Docker and Docker Compose with TensorFlow 2 and GPU support. + +## πŸ“‹ Prerequisites + +### System Requirements +- **Docker** version 19.03+ with GPU support +- **NVIDIA Container Toolkit** (for GPU acceleration) +- **NVIDIA GPU** with CUDA support +- **Linux, Windows with WSL2, or macOS with Docker Desktop** + +### GPU Setup +1. **Install NVIDIA Container Toolkit:** + ```bash + # Ubuntu/Debian + distribution=$(. /etc/os-release;echo $ID$VERSION_ID) \ + && curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \ + && curl -s -L https://nvidia.github.io/libnvidia-container/$distribution/libnvidia-container.list | \ + sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \ + sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list + + sudo apt-get update && sudo apt-get install -y nvidia-container-toolkit + sudo systemctl restart docker + ``` + +2. **Test GPU access:** + ```bash + docker run --rm --gpus all nvidia/cuda:11.8-base-ubuntu20.04 nvidia-smi + ``` + +## πŸš€ Quick Start with Docker Compose + +### 1. Prepare Your Environment + +```bash +# Clone the repository (if not already done) +git clone https://github.com/mustafa-meco/PV-Hawk.git +cd PV-Hawk + +# Checkout the TensorFlow 2 branch +git checkout tensorflow2-migration + +# Copy environment template +cp .env.example .env + +# Edit environment variables to match your setup +nano .env +``` + +### 2. Prepare Your Data Structure + +Create the following directory structure: +``` +your-project/ +β”œβ”€β”€ data/ # Input videos and raw data +β”œβ”€β”€ workdir/ # Processing workspace +β”‚ └── config.yml # Your processing configuration +β”œβ”€β”€ config/ # Configuration files +β”œβ”€β”€ calibration/ # Camera calibration parameters +β”œβ”€β”€ models/ # Model weights (.h5 files) +└── output/ # Final results +``` + +### 3. Configure Your Processing + +```bash +# Copy and edit the configuration +cp config/config.yml.example workdir/config.yml +nano workdir/config.yml +``` + +### 4. Build and Run + +```bash +# Build the Docker image +docker-compose build + +# Run the processing pipeline +docker-compose up pv-hawk + +# Or run in detached mode +docker-compose up -d pv-hawk +``` + +## πŸ› οΈ Manual Docker Commands + +### Build the Image +```bash +docker build -t pv-hawk-tf2:latest . +``` + +### Basic Run Command +```bash +docker run --gpus all --rm -it \ + -v $(pwd)/workdir:/workdir \ + -v $(pwd)/data:/data \ + -v $(pwd)/config:/config \ + -v $(pwd)/models:/models \ + pv-hawk-tf2:latest python3 main.py /workdir +``` + +### Advanced Run with All Mounts +```bash +docker run --gpus all --rm -it \ + --name pv-hawk-processor \ + -e CUDA_VISIBLE_DEVICES=0 \ + -e TF_FORCE_GPU_ALLOW_GROWTH=true \ + -v $(pwd)/workdir:/workdir \ + -v $(pwd)/data:/data \ + -v $(pwd)/config:/config \ + -v $(pwd)/calibration:/calibration \ + -v $(pwd)/models:/models \ + -v $(pwd)/output:/output \ + pv-hawk-tf2:latest python3 main.py /workdir +``` + +### Interactive Shell Access +```bash +docker run --gpus all --rm -it \ + -v $(pwd)/workdir:/workdir \ + -v $(pwd)/data:/data \ + pv-hawk-tf2:latest /bin/bash +``` + +### Run Specific Inference Task +```bash +docker run --gpus all --rm -it \ + -v $(pwd)/data:/data \ + -v $(pwd)/models:/models \ + pv-hawk-tf2:latest \ + python3 extractor/segmentation/inference.py \ + --frames_root /data/splitted \ + --output_dir /data/segmented \ + --ir_or_rgb ir \ + --weights_file_ir /models/mask_rcnn_pv_modules_0120.h5 +``` + +## πŸ”§ Development Mode + +For development with Jupyter Lab: + +```bash +# Start Jupyter Lab service +docker-compose --profile development up jupyter + +# Access at http://localhost:8888 +``` + +## πŸ“‚ Directory Structure and Mounts + +| Host Path | Container Path | Purpose | +|-----------|---------------|---------| +| `./workdir` | `/workdir` | Processing workspace with config.yml | +| `./data` | `/data` | Input videos and raw data | +| `./config` | `/config` | Configuration templates | +| `./calibration` | `/calibration` | Camera calibration parameters | +| `./models` | `/models` | Pre-trained model weights | +| `./output` | `/output` | Final processing results | + +## βš™οΈ Environment Variables + +Key environment variables (set in `.env` file): + +| Variable | Default | Description | +|----------|---------|-------------| +| `CUDA_VISIBLE_DEVICES` | `0` | GPU device to use | +| `TF_FORCE_GPU_ALLOW_GROWTH` | `true` | Allow GPU memory growth | +| `TF_CPP_MIN_LOG_LEVEL` | `1` | TensorFlow logging level | +| `DATA_DIR` | `./data` | Host data directory | +| `WORK_DIR` | `./workdir` | Host working directory | +| `MODELS_DIR` | `./models` | Host models directory | + +## πŸ” Monitoring and Debugging + +### View Logs +```bash +# View logs in real-time +docker-compose logs -f pv-hawk + +# View specific container logs +docker logs pv-hawk-processor +``` + +### Monitor GPU Usage +```bash +# Monitor GPU while processing +nvidia-smi -l 1 +``` + +### Check Container Health +```bash +# Check health status +docker-compose ps + +# Inspect container +docker inspect pv-hawk-processor +``` + +### Debug Interactive Mode +```bash +# Enter running container +docker exec -it pv-hawk-processor /bin/bash + +# Test TensorFlow GPU +docker exec -it pv-hawk-processor python3 -c "import tensorflow as tf; print('GPU:', tf.config.list_physical_devices('GPU'))" +``` + +## 🚨 Troubleshooting + +### Common Issues + +1. **GPU Not Detected** + ```bash + # Check NVIDIA drivers + nvidia-smi + + # Check Docker GPU support + docker run --rm --gpus all nvidia/cuda:11.8-base-ubuntu20.04 nvidia-smi + ``` + +2. **Out of GPU Memory** + - Reduce `images_per_gpu` in config.yml + - Set `TF_FORCE_GPU_ALLOW_GROWTH=true` + +3. **Permission Errors** + ```bash + # Fix directory permissions + sudo chown -R $USER:$USER ./workdir ./data ./output + ``` + +4. **Docker Build Fails** + ```bash + # Clean build with no cache + docker build --no-cache -t pv-hawk-tf2:latest . + + # Check disk space + docker system df + docker system prune + ``` + +### Performance Optimization + +1. **GPU Memory Settings** + - Monitor with `nvidia-smi` + - Adjust batch sizes in configuration + - Use `TF_FORCE_GPU_ALLOW_GROWTH=true` + +2. **CPU Optimization** + - Set OpenSfM processes based on CPU cores + - Use SSD storage for better I/O performance + +3. **Docker Performance** + - Use volumes instead of bind mounts for better performance + - Allocate sufficient Docker resources + +## πŸ“ Example Workflows + +### Process IR Video Sequence +```bash +# 1. Set up data +mkdir -p workdir/group_001/videos +cp your_ir_video.tiff workdir/group_001/videos/ + +# 2. Create config +cat > workdir/config.yml << EOF +plant_name: "IR Processing Test" +groups: +- cam_params_dir: /calibration + clusters: + - cluster_idx: 0 + frame_idx_start: 0 + frame_idx_end: 1000 +tasks: +- split_sequences +- segment_pv_modules +EOF + +# 3. Run processing +docker-compose up pv-hawk +``` + +### Process RGB Video with Full Pipeline +```bash +# Complete config with all tasks +cp config/config.yml.example workdir/config.yml + +# Run full pipeline +docker-compose up pv-hawk +``` + +## πŸ“Š Output Structure + +After processing, your workdir will contain: +``` +workdir/ +β”œβ”€β”€ config.yml +└── group_001/ + β”œβ”€β”€ splitted/ # Extracted frames + β”œβ”€β”€ segmented/ # PV module segmentation results + β”œβ”€β”€ tracking/ # Module tracking data + β”œβ”€β”€ quadrilaterals/ # Module corner estimates + β”œβ”€β”€ mapping/ # 3D reconstruction data + └── patches/ # Individual module crops +``` + +## πŸ”„ Updates and Maintenance + +### Update the Image +```bash +# Pull latest changes +git pull origin tensorflow2-migration + +# Rebuild image +docker-compose build --no-cache + +# Clean up old images +docker image prune -f +``` + +### Backup Processing Results +```bash +# Create backup +tar -czf pv-hawk-results-$(date +%Y%m%d).tar.gz workdir/ output/ + +# Restore from backup +tar -xzf pv-hawk-results-YYYYMMDD.tar.gz +``` \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index d98694a..512060b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,24 +1,26 @@ -FROM tensorflow/tensorflow:1.15.2-gpu-py3 +FROM tensorflow/tensorflow:latest-gpu WORKDIR / -# Fix for GPG key error (see https://github.com/NVIDIA/nvidia-docker/issues/1632) -RUN rm /etc/apt/sources.list.d/cuda.list -RUN rm /etc/apt/sources.list.d/nvidia-ml.list +# Fix for potential GPG key errors in newer TensorFlow images +RUN rm -f /etc/apt/sources.list.d/cuda.list /etc/apt/sources.list.d/nvidia-ml.list || true -# OpenCV & matplotlib dependencies +# Install system dependencies for OpenCV, matplotlib, and Python packages RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install -y \ libsm6 \ libxext6 \ libxrender-dev \ - python3-tk && \ + python3-tk \ + build-essential \ + curl \ + git && \ rm -rf /var/lib/apt/lists/* -# Install Python packages +# Install Python packages with modern pip COPY requirements.txt / -RUN pip3 install --upgrade pip -RUN pip3 install -r /requirements.txt +RUN python3 -m pip install --upgrade pip setuptools wheel +RUN python3 -m pip install -r /requirements.txt ############################################################################## @@ -27,7 +29,7 @@ RUN pip3 install -r /requirements.txt # ############################################################################## -# Install pangoling dependencies +# Install Pangolin dependencies (updated for modern Python) RUN apt-get update && \ apt-get install -y \ git \ @@ -35,7 +37,7 @@ RUN apt-get update && \ libgl1-mesa-dev \ libglew-dev \ cmake \ - libpython2.7-dev \ + python3-dev \ libegl1-mesa-dev \ libwayland-dev \ libxkbcommon-dev \ @@ -121,7 +123,7 @@ WORKDIR /code/g2opy/build && ldconfig WORKDIR /code/g2opy/ -RUN python setup.py install +RUN python3 -m pip install -e . WORKDIR /code/g2opy @@ -135,18 +137,18 @@ WORKDIR /code/g2opy COPY ./extractor/mapping/OpenSfM /pvextractor/extractor/mapping/OpenSfM WORKDIR /pvextractor/extractor/mapping/OpenSfM -RUN python setup.py build +RUN python3 -m pip install -e . WORKDIR /pvextractor ############################################################################### # -# Setup Mask R-CNN +# Setup Mask R-CNN TF2 # ############################################################################### -COPY ./extractor/segmentation/Mask_RCNN /pvextractor/extractor/segmentation/Mask_RCNN +COPY ./extractor/segmentation/Mask_RCNN_TF2 /pvextractor/extractor/segmentation/Mask_RCNN_TF2 -WORKDIR /pvextractor/extractor/segmentation/Mask_RCNN -RUN python setup.py install +WORKDIR /pvextractor/extractor/segmentation/Mask_RCNN_TF2 +RUN python3 -m pip install -e . WORKDIR /pvextractor diff --git a/TRAINING_TF2.md b/TRAINING_TF2.md new file mode 100644 index 0000000..086e7f8 --- /dev/null +++ b/TRAINING_TF2.md @@ -0,0 +1,59 @@ +# Training with TensorFlow 2 + +This document provides instructions for training PV-Hawk models with TensorFlow 2. + +## Setup + +The training notebook `extractor/segmentation/train.ipynb` has been updated to use TensorFlow 2 and the Mask_RCNN_TF2 implementation. + +### Prerequisites + +1. Activate the TensorFlow 2 environment: + ```bash + source .vevn_tf2/bin/activate + ``` + +2. Install Mask_RCNN_TF2 (already done during migration): + ```bash + cd extractor/segmentation/Mask_RCNN_TF2 + pip install -e . + ``` + +## Key Changes from TF1 to TF2 + +1. **Updated imports**: All imports now reference `Mask_RCNN_TF2` instead of `Mask_RCNN` +2. **GPU memory growth**: Automatic GPU memory growth is enabled for better GPU utilization +3. **Eager execution disabled**: Required for Mask R-CNN compatibility +4. **Model paths**: All model and weight paths updated to use TF2 versions + +## Training Process + +The training notebook includes: + +1. **Configuration**: Choose between RGB and IR training configurations +2. **Data loading**: Custom PVDataset class for loading PV module annotations +3. **Two-stage training**: + - Stage 1: Train only the heads (classification and regression layers) + - Stage 2: Fine-tune all layers with lower learning rate +4. **Validation**: Compute mAP and F1 scores at different IoU thresholds + +## GPU Requirements + +- NVIDIA GPU with CUDA support +- At least 6GB GPU memory (RTX 4060 or better recommended) +- NVIDIA Container Toolkit for Docker deployment + +## Usage + +1. Open the training notebook: + ```bash + jupyter notebook extractor/segmentation/train.ipynb + ``` + +2. Configure your dataset paths in the configuration cells +3. Run cells sequentially to train the model +4. Monitor training progress and validation metrics + +## Model Outputs + +Trained models are saved in the `Mask_RCNN_TF2/logs` directory with timestamps and can be used for inference with the updated `inference.py` script. \ No newline at end of file diff --git a/config/config.yml.example b/config/config.yml.example new file mode 100644 index 0000000..78d1569 --- /dev/null +++ b/config/config.yml.example @@ -0,0 +1,69 @@ +# PV-Hawk Configuration Example +# This file defines the processing pipeline and data structure + +plant_name: "My Solar Installation" + +groups: +- # Camera calibration parameters directory + cam_params_dir: /calibration + + # Clusters define video segments to process + clusters: + - cluster_idx: 0 + frame_idx_start: 0 + frame_idx_end: 2541 # Adjust based on your video length + + # Override default settings (optional) + settings: + # PV module segmentation settings + segment_pv_modules: + gpu_count: 1 + images_per_gpu: 2 # Adjust based on your GPU memory + detection_min_confidence: 0.9 + weights_file_ir: /models/mask_rcnn_pv_modules_0120.h5 + weights_file_rgb: /models/mask_rcnn_pv_modules_rgb_0059.h5 + + # Video splitting settings + split_sequences: + ir_file_extension: TIFF # or tiff, tif + rgb_file_extension: mov # or mp4, avi + extract_timestamps: true + extract_gps: true + subsample: null # or integer for subsampling + + # GPS interpolation (optional) + interpolate_gps: {} + + # Module tracking settings + track_pv_modules: + motion_model: homography + max_distance: 60 + output_video_fps: 8.0 + + # OpenSfM reconstruction settings + prepare_opensfm: + select_frames_mode: gps # gps, visual, or gps_visual + frame_selection_gps_distance: 0.75 + + opensfm: + matching_gps_distance: 20 + processes: 16 # Adjust based on CPU cores + align_method: orientation_prior + align_orientation_prior: horizontal # or vertical + +# Define which processing tasks to run (in order) +tasks: + - split_sequences # Extract frames from video + - interpolate_gps # Interpolate GPS coordinates (optional) + - segment_pv_modules # Detect and segment PV modules + - track_pv_modules # Track modules across frames + - compute_pv_module_quadrilaterals # Estimate module corners + - prepare_opensfm # Prepare data for 3D reconstruction + - opensfm_extract_metadata # OpenSfM: Extract camera metadata + - opensfm_detect_features # OpenSfM: Detect image features + - opensfm_match_features # OpenSfM: Match features between images + - opensfm_create_tracks # OpenSfM: Create feature tracks + - opensfm_reconstruct # OpenSfM: 3D reconstruction + - triangulate_pv_modules # Triangulate 3D module positions + - refine_triangulation # Refine 3D positions + - crop_pv_modules # Extract individual module patches \ No newline at end of file diff --git a/defaults.yml b/defaults.yml index 56fc674..11ba4e4 100644 --- a/defaults.yml +++ b/defaults.yml @@ -25,8 +25,8 @@ segment_pv_modules: gpu_count: 1 images_per_gpu: 8 detection_min_confidence: 0.9 - weights_file_ir: /pvextractor/extractor/segmentation/Mask_RCNN/mask_rcnn_pv_modules_0120.h5 - weights_file_rgb: /pvextractor/extractor/segmentation/Mask_RCNN/mask_rcnn_pv_modules_rgb_0059.h5 + weights_file_ir: /pvextractor/extractor/segmentation/Mask_RCNN_TF2/mask_rcnn_pv_modules_0120.h5 + weights_file_rgb: /pvextractor/extractor/segmentation/Mask_RCNN_TF2/mask_rcnn_pv_modules_rgb_0059.h5 output_video_fps: 8.0 track_pv_modules: diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..7840f7e --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,173 @@ +version: '3.8' + +services: + # CLI Mode - Original PV-Hawk command line interface + pv-hawk-cli: + build: + context: . + dockerfile: Dockerfile + image: pv-hawk-tf2:latest + container_name: pv-hawk-processor + + # GPU support - requires nvidia-container-toolkit + deploy: + resources: + reservations: + devices: + - driver: nvidia + count: all + capabilities: [gpu] + + # Alternative GPU support for older Docker versions + # runtime: nvidia + # environment: + # - NVIDIA_VISIBLE_DEVICES=all + # - NVIDIA_DRIVER_CAPABILITIES=compute,utility,graphics + + volumes: + # Mount your data directories + - ${DATA_DIR:-./data}:/data + - ${WORK_DIR:-./workdir}:/workdir + - ${CONFIG_DIR:-./config}:/config + + # Mount calibration parameters + - ${CALIBRATION_DIR:-./calibration}:/calibration + + # Optional: Mount model weights directory + - ${MODELS_DIR:-./models}:/models + + # Optional: Mount output directory + - ${OUTPUT_DIR:-./output}:/output + + working_dir: /pvextractor + + # Set environment variables + environment: + - PYTHONPATH=/pvextractor + - CUDA_VISIBLE_DEVICES=0 + - TF_FORCE_GPU_ALLOW_GROWTH=true + - TF_CPP_MIN_LOG_LEVEL=1 + + # Network mode for GUI applications (if using Pangolin viewer) + network_mode: host + + # Interactive terminal + stdin_open: true + tty: true + + # Default command - can be overridden + command: ["python3", "main.py", "/workdir"] + + # Health check + healthcheck: + test: ["CMD", "python3", "-c", "import tensorflow as tf; print('TF OK:', tf.__version__)"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 40s + + profiles: + - cli + + # API Mode - REST API server for programmatic control + pv-hawk-api: + build: + context: . + dockerfile: Dockerfile + image: pv-hawk-tf2:latest + container_name: pv-hawk-api-server + + # GPU support + deploy: + resources: + reservations: + devices: + - driver: nvidia + count: all + capabilities: [gpu] + + ports: + - "${API_PORT:-8000}:8000" + + volumes: + # Mount your data directories + - ${DATA_DIR:-./data}:/data + - ${WORK_DIR:-./workdir}:/workdir + - ${CONFIG_DIR:-./config}:/config + + # Mount calibration parameters + - ${CALIBRATION_DIR:-./calibration}:/calibration + + # Mount model weights directory + - ${MODELS_DIR:-./models}:/models + + # Mount output directory + - ${OUTPUT_DIR:-./output}:/output + + working_dir: /pvextractor + + # Set environment variables + environment: + - PYTHONPATH=/pvextractor + - CUDA_VISIBLE_DEVICES=0 + - TF_FORCE_GPU_ALLOW_GROWTH=true + - TF_CPP_MIN_LOG_LEVEL=1 + - API_SECRET_KEY=${API_SECRET_KEY:-pv-hawk-secret-key-change-in-production} + - API_KEY=${API_KEY:-} + + # Default command for API server + command: ["python3", "start_api.py", "--host", "0.0.0.0", "--port", "8000"] + + # Health check for API + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:8000/health", "||", "exit", "1"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 40s + + restart: unless-stopped + + # Optional: Jupyter notebook service for development + jupyter: + build: + context: . + dockerfile: Dockerfile + image: pv-hawk-tf2:latest + container_name: pv-hawk-jupyter + + deploy: + resources: + reservations: + devices: + - driver: nvidia + count: all + capabilities: [gpu] + + ports: + - "${JUPYTER_PORT:-8888}:8888" + + volumes: + - ${DATA_DIR:-./data}:/data + - ${WORK_DIR:-./workdir}:/workdir + - ${CONFIG_DIR:-./config}:/config + - .:/pvextractor # Mount source code for development + + working_dir: /pvextractor + + environment: + - PYTHONPATH=/pvextractor + - CUDA_VISIBLE_DEVICES=0 + - TF_FORCE_GPU_ALLOW_GROWTH=true + + command: [ + "jupyter", "lab", + "--ip=0.0.0.0", + "--port=8888", + "--no-browser", + "--allow-root", + "--NotebookApp.token=${JUPYTER_TOKEN:-''}" + ] + + profiles: + - development \ No newline at end of file diff --git a/extractor/segmentation/Mask_RCNN/MANIFEST.in b/extractor/segmentation/Mask_RCNN/MANIFEST.in deleted file mode 100644 index e149bfc..0000000 --- a/extractor/segmentation/Mask_RCNN/MANIFEST.in +++ /dev/null @@ -1,3 +0,0 @@ -include README.md -include LICENSE -include requirements.txt \ No newline at end of file diff --git a/extractor/segmentation/Mask_RCNN/README.md b/extractor/segmentation/Mask_RCNN/README.md deleted file mode 100644 index 174ae9a..0000000 --- a/extractor/segmentation/Mask_RCNN/README.md +++ /dev/null @@ -1,241 +0,0 @@ -# Mask R-CNN for Object Detection and Segmentation - -This is an implementation of [Mask R-CNN](https://arxiv.org/abs/1703.06870) on Python 3, Keras, and TensorFlow. The model generates bounding boxes and segmentation masks for each instance of an object in the image. It's based on Feature Pyramid Network (FPN) and a ResNet101 backbone. - -![Instance Segmentation Sample](assets/street.png) - -The repository includes: -* Source code of Mask R-CNN built on FPN and ResNet101. -* Training code for MS COCO -* Pre-trained weights for MS COCO -* Jupyter notebooks to visualize the detection pipeline at every step -* ParallelModel class for multi-GPU training -* Evaluation on MS COCO metrics (AP) -* Example of training on your own dataset - - -The code is documented and designed to be easy to extend. If you use it in your research, please consider citing this repository (bibtex below). If you work on 3D vision, you might find our recently released [Matterport3D](https://matterport.com/blog/2017/09/20/announcing-matterport3d-research-dataset/) dataset useful as well. -This dataset was created from 3D-reconstructed spaces captured by our customers who agreed to make them publicly available for academic use. You can see more examples [here](https://matterport.com/gallery/). - -# Getting Started -* [demo.ipynb](samples/demo.ipynb) Is the easiest way to start. It shows an example of using a model pre-trained on MS COCO to segment objects in your own images. -It includes code to run object detection and instance segmentation on arbitrary images. - -* [train_shapes.ipynb](samples/shapes/train_shapes.ipynb) shows how to train Mask R-CNN on your own dataset. This notebook introduces a toy dataset (Shapes) to demonstrate training on a new dataset. - -* ([model.py](mrcnn/model.py), [utils.py](mrcnn/utils.py), [config.py](mrcnn/config.py)): These files contain the main Mask RCNN implementation. - - -* [inspect_data.ipynb](samples/coco/inspect_data.ipynb). This notebook visualizes the different pre-processing steps -to prepare the training data. - -* [inspect_model.ipynb](samples/coco/inspect_model.ipynb) This notebook goes in depth into the steps performed to detect and segment objects. It provides visualizations of every step of the pipeline. - -* [inspect_weights.ipynb](samples/coco/inspect_weights.ipynb) -This notebooks inspects the weights of a trained model and looks for anomalies and odd patterns. - - -# Step by Step Detection -To help with debugging and understanding the model, there are 3 notebooks -([inspect_data.ipynb](samples/coco/inspect_data.ipynb), [inspect_model.ipynb](samples/coco/inspect_model.ipynb), -[inspect_weights.ipynb](samples/coco/inspect_weights.ipynb)) that provide a lot of visualizations and allow running the model step by step to inspect the output at each point. Here are a few examples: - - - -## 1. Anchor sorting and filtering -Visualizes every step of the first stage Region Proposal Network and displays positive and negative anchors along with anchor box refinement. -![](assets/detection_anchors.png) - -## 2. Bounding Box Refinement -This is an example of final detection boxes (dotted lines) and the refinement applied to them (solid lines) in the second stage. -![](assets/detection_refinement.png) - -## 3. Mask Generation -Examples of generated masks. These then get scaled and placed on the image in the right location. - -![](assets/detection_masks.png) - -## 4.Layer activations -Often it's useful to inspect the activations at different layers to look for signs of trouble (all zeros or random noise). - -![](assets/detection_activations.png) - -## 5. Weight Histograms -Another useful debugging tool is to inspect the weight histograms. These are included in the inspect_weights.ipynb notebook. - -![](assets/detection_histograms.png) - -## 6. Logging to TensorBoard -TensorBoard is another great debugging and visualization tool. The model is configured to log losses and save weights at the end of every epoch. - -![](assets/detection_tensorboard.png) - -## 6. Composing the different pieces into a final result - -![](assets/detection_final.png) - - -# Training on MS COCO -We're providing pre-trained weights for MS COCO to make it easier to start. You can -use those weights as a starting point to train your own variation on the network. -Training and evaluation code is in `samples/coco/coco.py`. You can import this -module in Jupyter notebook (see the provided notebooks for examples) or you -can run it directly from the command line as such: - -``` -# Train a new model starting from pre-trained COCO weights -python3 samples/coco/coco.py train --dataset=/path/to/coco/ --model=coco - -# Train a new model starting from ImageNet weights -python3 samples/coco/coco.py train --dataset=/path/to/coco/ --model=imagenet - -# Continue training a model that you had trained earlier -python3 samples/coco/coco.py train --dataset=/path/to/coco/ --model=/path/to/weights.h5 - -# Continue training the last model you trained. This will find -# the last trained weights in the model directory. -python3 samples/coco/coco.py train --dataset=/path/to/coco/ --model=last -``` - -You can also run the COCO evaluation code with: -``` -# Run COCO evaluation on the last trained model -python3 samples/coco/coco.py evaluate --dataset=/path/to/coco/ --model=last -``` - -The training schedule, learning rate, and other parameters should be set in `samples/coco/coco.py`. - - -# Training on Your Own Dataset - -Start by reading this [blog post about the balloon color splash sample](https://engineering.matterport.com/splash-of-color-instance-segmentation-with-mask-r-cnn-and-tensorflow-7c761e238b46). It covers the process starting from annotating images to training to using the results in a sample application. - -In summary, to train the model on your own dataset you'll need to extend two classes: - -```Config``` -This class contains the default configuration. Subclass it and modify the attributes you need to change. - -```Dataset``` -This class provides a consistent way to work with any dataset. -It allows you to use new datasets for training without having to change -the code of the model. It also supports loading multiple datasets at the -same time, which is useful if the objects you want to detect are not -all available in one dataset. - -See examples in `samples/shapes/train_shapes.ipynb`, `samples/coco/coco.py`, `samples/balloon/balloon.py`, and `samples/nucleus/nucleus.py`. - -## Differences from the Official Paper -This implementation follows the Mask RCNN paper for the most part, but there are a few cases where we deviated in favor of code simplicity and generalization. These are some of the differences we're aware of. If you encounter other differences, please do let us know. - -* **Image Resizing:** To support training multiple images per batch we resize all images to the same size. For example, 1024x1024px on MS COCO. We preserve the aspect ratio, so if an image is not square we pad it with zeros. In the paper the resizing is done such that the smallest side is 800px and the largest is trimmed at 1000px. -* **Bounding Boxes**: Some datasets provide bounding boxes and some provide masks only. To support training on multiple datasets we opted to ignore the bounding boxes that come with the dataset and generate them on the fly instead. We pick the smallest box that encapsulates all the pixels of the mask as the bounding box. This simplifies the implementation and also makes it easy to apply image augmentations that would otherwise be harder to apply to bounding boxes, such as image rotation. - - To validate this approach, we compared our computed bounding boxes to those provided by the COCO dataset. -We found that ~2% of bounding boxes differed by 1px or more, ~0.05% differed by 5px or more, -and only 0.01% differed by 10px or more. - -* **Learning Rate:** The paper uses a learning rate of 0.02, but we found that to be -too high, and often causes the weights to explode, especially when using a small batch -size. It might be related to differences between how Caffe and TensorFlow compute -gradients (sum vs mean across batches and GPUs). Or, maybe the official model uses gradient -clipping to avoid this issue. We do use gradient clipping, but don't set it too aggressively. -We found that smaller learning rates converge faster anyway so we go with that. - -## Citation -Use this bibtex to cite this repository: -``` -@misc{matterport_maskrcnn_2017, - title={Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow}, - author={Waleed Abdulla}, - year={2017}, - publisher={Github}, - journal={GitHub repository}, - howpublished={\url{https://github.com/matterport/Mask_RCNN}}, -} -``` - -## Contributing -Contributions to this repository are welcome. Examples of things you can contribute: -* Speed Improvements. Like re-writing some Python code in TensorFlow or Cython. -* Training on other datasets. -* Accuracy Improvements. -* Visualizations and examples. - -You can also [join our team](https://matterport.com/careers/) and help us build even more projects like this one. - -## Requirements -Python 3.4, TensorFlow 1.3, Keras 2.0.8 and other common packages listed in `requirements.txt`. - -### MS COCO Requirements: -To train or test on MS COCO, you'll also need: -* pycocotools (installation instructions below) -* [MS COCO Dataset](http://cocodataset.org/#home) -* Download the 5K [minival](https://dl.dropboxusercontent.com/s/o43o90bna78omob/instances_minival2014.json.zip?dl=0) - and the 35K [validation-minus-minival](https://dl.dropboxusercontent.com/s/s3tw5zcg7395368/instances_valminusminival2014.json.zip?dl=0) - subsets. More details in the original [Faster R-CNN implementation](https://github.com/rbgirshick/py-faster-rcnn/blob/master/data/README.md). - -If you use Docker, the code has been verified to work on -[this Docker container](https://hub.docker.com/r/waleedka/modern-deep-learning/). - - -## Installation -1. Clone this repository -2. Install dependencies - ```bash - pip3 install -r requirements.txt - ``` -3. Run setup from the repository root directory - ```bash - python3 setup.py install - ``` -3. Download pre-trained COCO weights (mask_rcnn_coco.h5) from the [releases page](https://github.com/matterport/Mask_RCNN/releases). -4. (Optional) To train or test on MS COCO install `pycocotools` from one of these repos. They are forks of the original pycocotools with fixes for Python3 and Windows (the official repo doesn't seem to be active anymore). - - * Linux: https://github.com/waleedka/coco - * Windows: https://github.com/philferriere/cocoapi. - You must have the Visual C++ 2015 build tools on your path (see the repo for additional details) - -# Projects Using this Model -If you extend this model to other datasets or build projects that use it, we'd love to hear from you. - -### [4K Video Demo](https://www.youtube.com/watch?v=OOT3UIXZztE) by Karol Majek. -[![Mask RCNN on 4K Video](assets/4k_video.gif)](https://www.youtube.com/watch?v=OOT3UIXZztE) - -### [Images to OSM](https://github.com/jremillard/images-to-osm): Improve OpenStreetMap by adding baseball, soccer, tennis, football, and basketball fields. - -![Identify sport fields in satellite images](assets/images_to_osm.png) - -### [Splash of Color](https://engineering.matterport.com/splash-of-color-instance-segmentation-with-mask-r-cnn-and-tensorflow-7c761e238b46). A blog post explaining how to train this model from scratch and use it to implement a color splash effect. -![Balloon Color Splash](assets/balloon_color_splash.gif) - - -### [Segmenting Nuclei in Microscopy Images](samples/nucleus). Built for the [2018 Data Science Bowl](https://www.kaggle.com/c/data-science-bowl-2018) -Code is in the `samples/nucleus` directory. - -![Nucleus Segmentation](assets/nucleus_segmentation.png) - -### [Detection and Segmentation for Surgery Robots](https://github.com/SUYEgit/Surgery-Robot-Detection-Segmentation) by the NUS Control & Mechatronics Lab. -![Surgery Robot Detection and Segmentation](https://github.com/SUYEgit/Surgery-Robot-Detection-Segmentation/raw/master/assets/video.gif) - -### [Reconstructing 3D buildings from aerial LiDAR](https://medium.com/geoai/reconstructing-3d-buildings-from-aerial-lidar-with-ai-details-6a81cb3079c0) -A proof of concept project by [Esri](https://www.esri.com/), in collaboration with Nvidia and Miami-Dade County. Along with a great write up and code by Dmitry Kudinov, Daniel Hedges, and Omar Maher. -![3D Building Reconstruction](assets/project_3dbuildings.png) - -### [Usiigaci: Label-free Cell Tracking in Phase Contrast Microscopy](https://github.com/oist/usiigaci) -A project from Japan to automatically track cells in a microfluidics platform. Paper is pending, but the source code is released. - -![](assets/project_usiigaci1.gif) ![](assets/project_usiigaci2.gif) - -### [Characterization of Arctic Ice-Wedge Polygons in Very High Spatial Resolution Aerial Imagery](http://www.mdpi.com/2072-4292/10/9/1487) -Research project to understand the complex processes between degradations in the Arctic and climate change. By Weixing Zhang, Chandi Witharana, Anna Liljedahl, and Mikhail Kanevskiy. -![image](assets/project_ice_wedge_polygons.png) - -### [Mask-RCNN Shiny](https://github.com/huuuuusy/Mask-RCNN-Shiny) -A computer vision class project by HU Shiyu to apply the color pop effect on people with beautiful results. -![](assets/project_shiny1.jpg) - -### [Mapping Challenge](https://github.com/crowdAI/crowdai-mapping-challenge-mask-rcnn): Convert satellite imagery to maps for use by humanitarian organisations. -![Mapping Challenge](assets/mapping_challenge.png) - -### [GRASS GIS Addon](https://github.com/ctu-geoforall-lab/i.ann.maskrcnn) to generate vector masks from geospatial imagery. Based on a [Master's thesis](https://github.com/ctu-geoforall-lab-projects/dp-pesek-2018) by OndΕ™ej PeΕ‘ek. -![GRASS GIS Image](assets/project_grass_gis.png) diff --git a/extractor/segmentation/Mask_RCNN/mrcnn/__init__.py b/extractor/segmentation/Mask_RCNN/mrcnn/__init__.py deleted file mode 100644 index 8b13789..0000000 --- a/extractor/segmentation/Mask_RCNN/mrcnn/__init__.py +++ /dev/null @@ -1 +0,0 @@ - diff --git a/extractor/segmentation/Mask_RCNN/mrcnn/config.py b/extractor/segmentation/Mask_RCNN/mrcnn/config.py deleted file mode 100644 index 6f91170..0000000 --- a/extractor/segmentation/Mask_RCNN/mrcnn/config.py +++ /dev/null @@ -1,236 +0,0 @@ -""" -Mask R-CNN -Base Configurations class. - -Copyright (c) 2017 Matterport, Inc. -Licensed under the MIT License (see LICENSE for details) -Written by Waleed Abdulla -""" - -import numpy as np - - -# Base Configuration Class -# Don't use this class directly. Instead, sub-class it and override -# the configurations you need to change. - -class Config(object): - """Base configuration class. For custom configurations, create a - sub-class that inherits from this one and override properties - that need to be changed. - """ - # Name the configurations. For example, 'COCO', 'Experiment 3', ...etc. - # Useful if your code needs to do things differently depending on which - # experiment is running. - NAME = None # Override in sub-classes - - # NUMBER OF GPUs to use. When using only a CPU, this needs to be set to 1. - GPU_COUNT = 1 - - # Number of images to train with on each GPU. A 12GB GPU can typically - # handle 2 images of 1024x1024px. - # Adjust based on your GPU memory and image sizes. Use the highest - # number that your GPU can handle for best performance. - IMAGES_PER_GPU = 2 - - # Number of training steps per epoch - # This doesn't need to match the size of the training set. Tensorboard - # updates are saved at the end of each epoch, so setting this to a - # smaller number means getting more frequent TensorBoard updates. - # Validation stats are also calculated at each epoch end and they - # might take a while, so don't set this too small to avoid spending - # a lot of time on validation stats. - STEPS_PER_EPOCH = 1000 - - # Number of validation steps to run at the end of every training epoch. - # A bigger number improves accuracy of validation stats, but slows - # down the training. - VALIDATION_STEPS = 50 - - # Backbone network architecture - # Supported values are: resnet50, resnet101. - # You can also provide a callable that should have the signature - # of model.resnet_graph. If you do so, you need to supply a callable - # to COMPUTE_BACKBONE_SHAPE as well - BACKBONE = "resnet101" - - # Only useful if you supply a callable to BACKBONE. Should compute - # the shape of each layer of the FPN Pyramid. - # See model.compute_backbone_shapes - COMPUTE_BACKBONE_SHAPE = None - - # The strides of each layer of the FPN Pyramid. These values - # are based on a Resnet101 backbone. - BACKBONE_STRIDES = [4, 8, 16, 32, 64] - - # Size of the fully-connected layers in the classification graph - FPN_CLASSIF_FC_LAYERS_SIZE = 1024 - - # Size of the top-down layers used to build the feature pyramid - TOP_DOWN_PYRAMID_SIZE = 256 - - # Number of classification classes (including background) - NUM_CLASSES = 1 # Override in sub-classes - - # Length of square anchor side in pixels - RPN_ANCHOR_SCALES = (32, 64, 128, 256, 512) - - # Ratios of anchors at each cell (width/height) - # A value of 1 represents a square anchor, and 0.5 is a wide anchor - RPN_ANCHOR_RATIOS = [0.5, 1, 2] - - # Anchor stride - # If 1 then anchors are created for each cell in the backbone feature map. - # If 2, then anchors are created for every other cell, and so on. - RPN_ANCHOR_STRIDE = 1 - - # Non-max suppression threshold to filter RPN proposals. - # You can increase this during training to generate more propsals. - RPN_NMS_THRESHOLD = 0.7 - - # How many anchors per image to use for RPN training - RPN_TRAIN_ANCHORS_PER_IMAGE = 256 - - # ROIs kept after tf.nn.top_k and before non-maximum suppression - PRE_NMS_LIMIT = 6000 - - # ROIs kept after non-maximum suppression (training and inference) - POST_NMS_ROIS_TRAINING = 2000 - POST_NMS_ROIS_INFERENCE = 1000 - - # If enabled, resizes instance masks to a smaller size to reduce - # memory load. Recommended when using high-resolution images. - USE_MINI_MASK = True - MINI_MASK_SHAPE = (56, 56) # (height, width) of the mini-mask - - # Input image resizing - # Generally, use the "square" resizing mode for training and predicting - # and it should work well in most cases. In this mode, images are scaled - # up such that the small side is = IMAGE_MIN_DIM, but ensuring that the - # scaling doesn't make the long side > IMAGE_MAX_DIM. Then the image is - # padded with zeros to make it a square so multiple images can be put - # in one batch. - # Available resizing modes: - # none: No resizing or padding. Return the image unchanged. - # square: Resize and pad with zeros to get a square image - # of size [max_dim, max_dim]. - # pad64: Pads width and height with zeros to make them multiples of 64. - # If IMAGE_MIN_DIM or IMAGE_MIN_SCALE are not None, then it scales - # up before padding. IMAGE_MAX_DIM is ignored in this mode. - # The multiple of 64 is needed to ensure smooth scaling of feature - # maps up and down the 6 levels of the FPN pyramid (2**6=64). - # crop: Picks random crops from the image. First, scales the image based - # on IMAGE_MIN_DIM and IMAGE_MIN_SCALE, then picks a random crop of - # size IMAGE_MIN_DIM x IMAGE_MIN_DIM. Can be used in training only. - # IMAGE_MAX_DIM is not used in this mode. - IMAGE_RESIZE_MODE = "square" - IMAGE_MIN_DIM = 800 - IMAGE_MAX_DIM = 1024 - # Minimum scaling ratio. Checked after MIN_IMAGE_DIM and can force further - # up scaling. For example, if set to 2 then images are scaled up to double - # the width and height, or more, even if MIN_IMAGE_DIM doesn't require it. - # However, in 'square' mode, it can be overruled by IMAGE_MAX_DIM. - IMAGE_MIN_SCALE = 0 - # Number of color channels per image. RGB = 3, grayscale = 1, RGB-D = 4 - # Changing this requires other changes in the code. See the WIKI for more - # details: https://github.com/matterport/Mask_RCNN/wiki - IMAGE_CHANNEL_COUNT = 3 - - # Image mean (RGB) - MEAN_PIXEL = np.array([123.7, 116.8, 103.9]) - - # Number of ROIs per image to feed to classifier/mask heads - # The Mask RCNN paper uses 512 but often the RPN doesn't generate - # enough positive proposals to fill this and keep a positive:negative - # ratio of 1:3. You can increase the number of proposals by adjusting - # the RPN NMS threshold. - TRAIN_ROIS_PER_IMAGE = 200 - - # Percent of positive ROIs used to train classifier/mask heads - ROI_POSITIVE_RATIO = 0.33 - - # Pooled ROIs - POOL_SIZE = 7 - MASK_POOL_SIZE = 14 - - # Shape of output mask - # To change this you also need to change the neural network mask branch - MASK_SHAPE = [28, 28] - - # Maximum number of ground truth instances to use in one image - MAX_GT_INSTANCES = 100 - - # Bounding box refinement standard deviation for RPN and final detections. - RPN_BBOX_STD_DEV = np.array([0.1, 0.1, 0.2, 0.2]) - BBOX_STD_DEV = np.array([0.1, 0.1, 0.2, 0.2]) - - # Max number of final detections - DETECTION_MAX_INSTANCES = 100 - - # Minimum probability value to accept a detected instance - # ROIs below this threshold are skipped - DETECTION_MIN_CONFIDENCE = 0.7 - - # Non-maximum suppression threshold for detection - DETECTION_NMS_THRESHOLD = 0.3 - - # Learning rate and momentum - # The Mask RCNN paper uses lr=0.02, but on TensorFlow it causes - # weights to explode. Likely due to differences in optimizer - # implementation. - LEARNING_RATE = 0.001 - LEARNING_MOMENTUM = 0.9 - - # Weight decay regularization - WEIGHT_DECAY = 0.0001 - - # Loss weights for more precise optimization. - # Can be used for R-CNN training setup. - LOSS_WEIGHTS = { - "rpn_class_loss": 1., - "rpn_bbox_loss": 1., - "mrcnn_class_loss": 1., - "mrcnn_bbox_loss": 1., - "mrcnn_mask_loss": 1. - } - - # Use RPN ROIs or externally generated ROIs for training - # Keep this True for most situations. Set to False if you want to train - # the head branches on ROI generated by code rather than the ROIs from - # the RPN. For example, to debug the classifier head without having to - # train the RPN. - USE_RPN_ROIS = True - - # Train or freeze batch normalization layers - # None: Train BN layers. This is the normal mode - # False: Freeze BN layers. Good when using a small batch size - # True: (don't use). Set layer in training mode even when predicting - TRAIN_BN = False # Defaulting to False since batch size is often small - - # Gradient norm clipping - GRADIENT_CLIP_NORM = 5.0 - - def __init__(self): - """Set values of computed attributes.""" - # Effective batch size - self.BATCH_SIZE = self.IMAGES_PER_GPU * self.GPU_COUNT - - # Input image size - if self.IMAGE_RESIZE_MODE == "crop": - self.IMAGE_SHAPE = np.array([self.IMAGE_MIN_DIM, self.IMAGE_MIN_DIM, - self.IMAGE_CHANNEL_COUNT]) - else: - self.IMAGE_SHAPE = np.array([self.IMAGE_MAX_DIM, self.IMAGE_MAX_DIM, - self.IMAGE_CHANNEL_COUNT]) - - # Image meta data length - # See compose_image_meta() for details - self.IMAGE_META_SIZE = 1 + 3 + 3 + 4 + 1 + self.NUM_CLASSES - - def display(self): - """Display Configuration values.""" - print("\nConfigurations:") - for a in dir(self): - if not a.startswith("__") and not callable(getattr(self, a)): - print("{:30} {}".format(a, getattr(self, a))) - print("\n") diff --git a/extractor/segmentation/Mask_RCNN/mrcnn/model.py b/extractor/segmentation/Mask_RCNN/mrcnn/model.py deleted file mode 100644 index 864e41b..0000000 --- a/extractor/segmentation/Mask_RCNN/mrcnn/model.py +++ /dev/null @@ -1,2869 +0,0 @@ -""" -Mask R-CNN -The main Mask R-CNN model implementation. - -Copyright (c) 2017 Matterport, Inc. -Licensed under the MIT License (see LICENSE for details) -Written by Waleed Abdulla -""" - -import os -import random -import datetime -import re -import math -import logging -from collections import OrderedDict -import multiprocessing -import numpy as np -import tensorflow as tf -import keras -import keras.backend as K -import keras.layers as KL -import keras.engine as KE -import keras.models as KM - -from mrcnn import utils - -# Requires TensorFlow 1.3+ and Keras 2.0.8+. -from distutils.version import LooseVersion -assert LooseVersion(tf.__version__) >= LooseVersion("1.3") -assert LooseVersion(keras.__version__) >= LooseVersion('2.0.8') - - -############################################################ -# Utility Functions -############################################################ - -def log(text, array=None): - """Prints a text message. And, optionally, if a Numpy array is provided it - prints it's shape, min, and max values. - """ - if array is not None: - text = text.ljust(25) - text += ("shape: {:20} ".format(str(array.shape))) - if array.size: - text += ("min: {:10.5f} max: {:10.5f}".format(array.min(),array.max())) - else: - text += ("min: {:10} max: {:10}".format("","")) - text += " {}".format(array.dtype) - print(text) - - -class BatchNorm(KL.BatchNormalization): - """Extends the Keras BatchNormalization class to allow a central place - to make changes if needed. - - Batch normalization has a negative effect on training if batches are small - so this layer is often frozen (via setting in Config class) and functions - as linear layer. - """ - def call(self, inputs, training=None): - """ - Note about training values: - None: Train BN layers. This is the normal mode - False: Freeze BN layers. Good when batch size is small - True: (don't use). Set layer in training mode even when making inferences - """ - return super(self.__class__, self).call(inputs, training=training) - - -def compute_backbone_shapes(config, image_shape): - """Computes the width and height of each stage of the backbone network. - - Returns: - [N, (height, width)]. Where N is the number of stages - """ - if callable(config.BACKBONE): - return config.COMPUTE_BACKBONE_SHAPE(image_shape) - - # Currently supports ResNet only - assert config.BACKBONE in ["resnet50", "resnet101"] - return np.array( - [[int(math.ceil(image_shape[0] / stride)), - int(math.ceil(image_shape[1] / stride))] - for stride in config.BACKBONE_STRIDES]) - - -############################################################ -# Resnet Graph -############################################################ - -# Code adopted from: -# https://github.com/fchollet/deep-learning-models/blob/master/resnet50.py - -def identity_block(input_tensor, kernel_size, filters, stage, block, - use_bias=True, train_bn=True): - """The identity_block is the block that has no conv layer at shortcut - # Arguments - input_tensor: input tensor - kernel_size: default 3, the kernel size of middle conv layer at main path - filters: list of integers, the nb_filters of 3 conv layer at main path - stage: integer, current stage label, used for generating layer names - block: 'a','b'..., current block label, used for generating layer names - use_bias: Boolean. To use or not use a bias in conv layers. - train_bn: Boolean. Train or freeze Batch Norm layers - """ - nb_filter1, nb_filter2, nb_filter3 = filters - conv_name_base = 'res' + str(stage) + block + '_branch' - bn_name_base = 'bn' + str(stage) + block + '_branch' - - x = KL.Conv2D(nb_filter1, (1, 1), name=conv_name_base + '2a', - use_bias=use_bias)(input_tensor) - x = BatchNorm(name=bn_name_base + '2a')(x, training=train_bn) - x = KL.Activation('relu')(x) - - x = KL.Conv2D(nb_filter2, (kernel_size, kernel_size), padding='same', - name=conv_name_base + '2b', use_bias=use_bias)(x) - x = BatchNorm(name=bn_name_base + '2b')(x, training=train_bn) - x = KL.Activation('relu')(x) - - x = KL.Conv2D(nb_filter3, (1, 1), name=conv_name_base + '2c', - use_bias=use_bias)(x) - x = BatchNorm(name=bn_name_base + '2c')(x, training=train_bn) - - x = KL.Add()([x, input_tensor]) - x = KL.Activation('relu', name='res' + str(stage) + block + '_out')(x) - return x - - -def conv_block(input_tensor, kernel_size, filters, stage, block, - strides=(2, 2), use_bias=True, train_bn=True): - """conv_block is the block that has a conv layer at shortcut - # Arguments - input_tensor: input tensor - kernel_size: default 3, the kernel size of middle conv layer at main path - filters: list of integers, the nb_filters of 3 conv layer at main path - stage: integer, current stage label, used for generating layer names - block: 'a','b'..., current block label, used for generating layer names - use_bias: Boolean. To use or not use a bias in conv layers. - train_bn: Boolean. Train or freeze Batch Norm layers - Note that from stage 3, the first conv layer at main path is with subsample=(2,2) - And the shortcut should have subsample=(2,2) as well - """ - nb_filter1, nb_filter2, nb_filter3 = filters - conv_name_base = 'res' + str(stage) + block + '_branch' - bn_name_base = 'bn' + str(stage) + block + '_branch' - - x = KL.Conv2D(nb_filter1, (1, 1), strides=strides, - name=conv_name_base + '2a', use_bias=use_bias)(input_tensor) - x = BatchNorm(name=bn_name_base + '2a')(x, training=train_bn) - x = KL.Activation('relu')(x) - - x = KL.Conv2D(nb_filter2, (kernel_size, kernel_size), padding='same', - name=conv_name_base + '2b', use_bias=use_bias)(x) - x = BatchNorm(name=bn_name_base + '2b')(x, training=train_bn) - x = KL.Activation('relu')(x) - - x = KL.Conv2D(nb_filter3, (1, 1), name=conv_name_base + - '2c', use_bias=use_bias)(x) - x = BatchNorm(name=bn_name_base + '2c')(x, training=train_bn) - - shortcut = KL.Conv2D(nb_filter3, (1, 1), strides=strides, - name=conv_name_base + '1', use_bias=use_bias)(input_tensor) - shortcut = BatchNorm(name=bn_name_base + '1')(shortcut, training=train_bn) - - x = KL.Add()([x, shortcut]) - x = KL.Activation('relu', name='res' + str(stage) + block + '_out')(x) - return x - - -def resnet_graph(input_image, architecture, stage5=False, train_bn=True): - """Build a ResNet graph. - architecture: Can be resnet50 or resnet101 - stage5: Boolean. If False, stage5 of the network is not created - train_bn: Boolean. Train or freeze Batch Norm layers - """ - assert architecture in ["resnet50", "resnet101"] - # Stage 1 - x = KL.ZeroPadding2D((3, 3))(input_image) - x = KL.Conv2D(64, (7, 7), strides=(2, 2), name='conv1', use_bias=True)(x) - x = BatchNorm(name='bn_conv1')(x, training=train_bn) - x = KL.Activation('relu')(x) - C1 = x = KL.MaxPooling2D((3, 3), strides=(2, 2), padding="same")(x) - # Stage 2 - x = conv_block(x, 3, [64, 64, 256], stage=2, block='a', strides=(1, 1), train_bn=train_bn) - x = identity_block(x, 3, [64, 64, 256], stage=2, block='b', train_bn=train_bn) - C2 = x = identity_block(x, 3, [64, 64, 256], stage=2, block='c', train_bn=train_bn) - # Stage 3 - x = conv_block(x, 3, [128, 128, 512], stage=3, block='a', train_bn=train_bn) - x = identity_block(x, 3, [128, 128, 512], stage=3, block='b', train_bn=train_bn) - x = identity_block(x, 3, [128, 128, 512], stage=3, block='c', train_bn=train_bn) - C3 = x = identity_block(x, 3, [128, 128, 512], stage=3, block='d', train_bn=train_bn) - # Stage 4 - x = conv_block(x, 3, [256, 256, 1024], stage=4, block='a', train_bn=train_bn) - block_count = {"resnet50": 5, "resnet101": 22}[architecture] - for i in range(block_count): - x = identity_block(x, 3, [256, 256, 1024], stage=4, block=chr(98 + i), train_bn=train_bn) - C4 = x - # Stage 5 - if stage5: - x = conv_block(x, 3, [512, 512, 2048], stage=5, block='a', train_bn=train_bn) - x = identity_block(x, 3, [512, 512, 2048], stage=5, block='b', train_bn=train_bn) - C5 = x = identity_block(x, 3, [512, 512, 2048], stage=5, block='c', train_bn=train_bn) - else: - C5 = None - return [C1, C2, C3, C4, C5] - - -############################################################ -# Proposal Layer -############################################################ - -def apply_box_deltas_graph(boxes, deltas): - """Applies the given deltas to the given boxes. - boxes: [N, (y1, x1, y2, x2)] boxes to update - deltas: [N, (dy, dx, log(dh), log(dw))] refinements to apply - """ - # Convert to y, x, h, w - height = boxes[:, 2] - boxes[:, 0] - width = boxes[:, 3] - boxes[:, 1] - center_y = boxes[:, 0] + 0.5 * height - center_x = boxes[:, 1] + 0.5 * width - # Apply deltas - center_y += deltas[:, 0] * height - center_x += deltas[:, 1] * width - height *= tf.exp(deltas[:, 2]) - width *= tf.exp(deltas[:, 3]) - # Convert back to y1, x1, y2, x2 - y1 = center_y - 0.5 * height - x1 = center_x - 0.5 * width - y2 = y1 + height - x2 = x1 + width - result = tf.stack([y1, x1, y2, x2], axis=1, name="apply_box_deltas_out") - return result - - -def clip_boxes_graph(boxes, window): - """ - boxes: [N, (y1, x1, y2, x2)] - window: [4] in the form y1, x1, y2, x2 - """ - # Split - wy1, wx1, wy2, wx2 = tf.split(window, 4) - y1, x1, y2, x2 = tf.split(boxes, 4, axis=1) - # Clip - y1 = tf.maximum(tf.minimum(y1, wy2), wy1) - x1 = tf.maximum(tf.minimum(x1, wx2), wx1) - y2 = tf.maximum(tf.minimum(y2, wy2), wy1) - x2 = tf.maximum(tf.minimum(x2, wx2), wx1) - clipped = tf.concat([y1, x1, y2, x2], axis=1, name="clipped_boxes") - clipped.set_shape((clipped.shape[0], 4)) - return clipped - - -class ProposalLayer(KE.Layer): - """Receives anchor scores and selects a subset to pass as proposals - to the second stage. Filtering is done based on anchor scores and - non-max suppression to remove overlaps. It also applies bounding - box refinement deltas to anchors. - - Inputs: - rpn_probs: [batch, num_anchors, (bg prob, fg prob)] - rpn_bbox: [batch, num_anchors, (dy, dx, log(dh), log(dw))] - anchors: [batch, num_anchors, (y1, x1, y2, x2)] anchors in normalized coordinates - - Returns: - Proposals in normalized coordinates [batch, rois, (y1, x1, y2, x2)] - """ - - def __init__(self, proposal_count, nms_threshold, config=None, **kwargs): - super(ProposalLayer, self).__init__(**kwargs) - self.config = config - self.proposal_count = proposal_count - self.nms_threshold = nms_threshold - - def call(self, inputs): - # Box Scores. Use the foreground class confidence. [Batch, num_rois, 1] - scores = inputs[0][:, :, 1] - # Box deltas [batch, num_rois, 4] - deltas = inputs[1] - deltas = deltas * np.reshape(self.config.RPN_BBOX_STD_DEV, [1, 1, 4]) - # Anchors - anchors = inputs[2] - - # Improve performance by trimming to top anchors by score - # and doing the rest on the smaller subset. - pre_nms_limit = tf.minimum(self.config.PRE_NMS_LIMIT, tf.shape(anchors)[1]) - ix = tf.nn.top_k(scores, pre_nms_limit, sorted=True, - name="top_anchors").indices - scores = utils.batch_slice([scores, ix], lambda x, y: tf.gather(x, y), - self.config.IMAGES_PER_GPU) - deltas = utils.batch_slice([deltas, ix], lambda x, y: tf.gather(x, y), - self.config.IMAGES_PER_GPU) - pre_nms_anchors = utils.batch_slice([anchors, ix], lambda a, x: tf.gather(a, x), - self.config.IMAGES_PER_GPU, - names=["pre_nms_anchors"]) - - # Apply deltas to anchors to get refined anchors. - # [batch, N, (y1, x1, y2, x2)] - boxes = utils.batch_slice([pre_nms_anchors, deltas], - lambda x, y: apply_box_deltas_graph(x, y), - self.config.IMAGES_PER_GPU, - names=["refined_anchors"]) - - # Clip to image boundaries. Since we're in normalized coordinates, - # clip to 0..1 range. [batch, N, (y1, x1, y2, x2)] - window = np.array([0, 0, 1, 1], dtype=np.float32) - boxes = utils.batch_slice(boxes, - lambda x: clip_boxes_graph(x, window), - self.config.IMAGES_PER_GPU, - names=["refined_anchors_clipped"]) - - # Filter out small boxes - # According to Xinlei Chen's paper, this reduces detection accuracy - # for small objects, so we're skipping it. - - # Non-max suppression - def nms(boxes, scores): - indices = tf.image.non_max_suppression( - boxes, scores, self.proposal_count, - self.nms_threshold, name="rpn_non_max_suppression") - proposals = tf.gather(boxes, indices) - # Pad if needed - padding = tf.maximum(self.proposal_count - tf.shape(proposals)[0], 0) - proposals = tf.pad(proposals, [(0, padding), (0, 0)]) - return proposals - proposals = utils.batch_slice([boxes, scores], nms, - self.config.IMAGES_PER_GPU) - return proposals - - def compute_output_shape(self, input_shape): - return (None, self.proposal_count, 4) - - -############################################################ -# ROIAlign Layer -############################################################ - -def log2_graph(x): - """Implementation of Log2. TF doesn't have a native implementation.""" - return tf.log(x) / tf.log(2.0) - - -class PyramidROIAlign(KE.Layer): - """Implements ROI Pooling on multiple levels of the feature pyramid. - - Params: - - pool_shape: [pool_height, pool_width] of the output pooled regions. Usually [7, 7] - - Inputs: - - boxes: [batch, num_boxes, (y1, x1, y2, x2)] in normalized - coordinates. Possibly padded with zeros if not enough - boxes to fill the array. - - image_meta: [batch, (meta data)] Image details. See compose_image_meta() - - feature_maps: List of feature maps from different levels of the pyramid. - Each is [batch, height, width, channels] - - Output: - Pooled regions in the shape: [batch, num_boxes, pool_height, pool_width, channels]. - The width and height are those specific in the pool_shape in the layer - constructor. - """ - - def __init__(self, pool_shape, **kwargs): - super(PyramidROIAlign, self).__init__(**kwargs) - self.pool_shape = tuple(pool_shape) - - def call(self, inputs): - # Crop boxes [batch, num_boxes, (y1, x1, y2, x2)] in normalized coords - boxes = inputs[0] - - # Image meta - # Holds details about the image. See compose_image_meta() - image_meta = inputs[1] - - # Feature Maps. List of feature maps from different level of the - # feature pyramid. Each is [batch, height, width, channels] - feature_maps = inputs[2:] - - # Assign each ROI to a level in the pyramid based on the ROI area. - y1, x1, y2, x2 = tf.split(boxes, 4, axis=2) - h = y2 - y1 - w = x2 - x1 - # Use shape of first image. Images in a batch must have the same size. - image_shape = parse_image_meta_graph(image_meta)['image_shape'][0] - # Equation 1 in the Feature Pyramid Networks paper. Account for - # the fact that our coordinates are normalized here. - # e.g. a 224x224 ROI (in pixels) maps to P4 - image_area = tf.cast(image_shape[0] * image_shape[1], tf.float32) - roi_level = log2_graph(tf.sqrt(h * w) / (224.0 / tf.sqrt(image_area))) - roi_level = tf.minimum(5, tf.maximum( - 2, 4 + tf.cast(tf.round(roi_level), tf.int32))) - roi_level = tf.squeeze(roi_level, 2) - - # Loop through levels and apply ROI pooling to each. P2 to P5. - pooled = [] - box_to_level = [] - for i, level in enumerate(range(2, 6)): - ix = tf.where(tf.equal(roi_level, level)) - level_boxes = tf.gather_nd(boxes, ix) - - # Box indices for crop_and_resize. - box_indices = tf.cast(ix[:, 0], tf.int32) - - # Keep track of which box is mapped to which level - box_to_level.append(ix) - - # Stop gradient propogation to ROI proposals - level_boxes = tf.stop_gradient(level_boxes) - box_indices = tf.stop_gradient(box_indices) - - # Crop and Resize - # From Mask R-CNN paper: "We sample four regular locations, so - # that we can evaluate either max or average pooling. In fact, - # interpolating only a single value at each bin center (without - # pooling) is nearly as effective." - # - # Here we use the simplified approach of a single value per bin, - # which is how it's done in tf.crop_and_resize() - # Result: [batch * num_boxes, pool_height, pool_width, channels] - pooled.append(tf.image.crop_and_resize( - feature_maps[i], level_boxes, box_indices, self.pool_shape, - method="bilinear")) - - # Pack pooled features into one tensor - pooled = tf.concat(pooled, axis=0) - - # Pack box_to_level mapping into one array and add another - # column representing the order of pooled boxes - box_to_level = tf.concat(box_to_level, axis=0) - box_range = tf.expand_dims(tf.range(tf.shape(box_to_level)[0]), 1) - box_to_level = tf.concat([tf.cast(box_to_level, tf.int32), box_range], - axis=1) - - # Rearrange pooled features to match the order of the original boxes - # Sort box_to_level by batch then box index - # TF doesn't have a way to sort by two columns, so merge them and sort. - sorting_tensor = box_to_level[:, 0] * 100000 + box_to_level[:, 1] - ix = tf.nn.top_k(sorting_tensor, k=tf.shape( - box_to_level)[0]).indices[::-1] - ix = tf.gather(box_to_level[:, 2], ix) - pooled = tf.gather(pooled, ix) - - # Re-add the batch dimension - shape = tf.concat([tf.shape(boxes)[:2], tf.shape(pooled)[1:]], axis=0) - pooled = tf.reshape(pooled, shape) - return pooled - - def compute_output_shape(self, input_shape): - return input_shape[0][:2] + self.pool_shape + (input_shape[2][-1], ) - - -############################################################ -# Detection Target Layer -############################################################ - -def overlaps_graph(boxes1, boxes2): - """Computes IoU overlaps between two sets of boxes. - boxes1, boxes2: [N, (y1, x1, y2, x2)]. - """ - # 1. Tile boxes2 and repeat boxes1. This allows us to compare - # every boxes1 against every boxes2 without loops. - # TF doesn't have an equivalent to np.repeat() so simulate it - # using tf.tile() and tf.reshape. - b1 = tf.reshape(tf.tile(tf.expand_dims(boxes1, 1), - [1, 1, tf.shape(boxes2)[0]]), [-1, 4]) - b2 = tf.tile(boxes2, [tf.shape(boxes1)[0], 1]) - # 2. Compute intersections - b1_y1, b1_x1, b1_y2, b1_x2 = tf.split(b1, 4, axis=1) - b2_y1, b2_x1, b2_y2, b2_x2 = tf.split(b2, 4, axis=1) - y1 = tf.maximum(b1_y1, b2_y1) - x1 = tf.maximum(b1_x1, b2_x1) - y2 = tf.minimum(b1_y2, b2_y2) - x2 = tf.minimum(b1_x2, b2_x2) - intersection = tf.maximum(x2 - x1, 0) * tf.maximum(y2 - y1, 0) - # 3. Compute unions - b1_area = (b1_y2 - b1_y1) * (b1_x2 - b1_x1) - b2_area = (b2_y2 - b2_y1) * (b2_x2 - b2_x1) - union = b1_area + b2_area - intersection - # 4. Compute IoU and reshape to [boxes1, boxes2] - iou = intersection / union - overlaps = tf.reshape(iou, [tf.shape(boxes1)[0], tf.shape(boxes2)[0]]) - return overlaps - - -def detection_targets_graph(proposals, gt_class_ids, gt_boxes, gt_masks, config): - """Generates detection targets for one image. Subsamples proposals and - generates target class IDs, bounding box deltas, and masks for each. - - Inputs: - proposals: [POST_NMS_ROIS_TRAINING, (y1, x1, y2, x2)] in normalized coordinates. Might - be zero padded if there are not enough proposals. - gt_class_ids: [MAX_GT_INSTANCES] int class IDs - gt_boxes: [MAX_GT_INSTANCES, (y1, x1, y2, x2)] in normalized coordinates. - gt_masks: [height, width, MAX_GT_INSTANCES] of boolean type. - - Returns: Target ROIs and corresponding class IDs, bounding box shifts, - and masks. - rois: [TRAIN_ROIS_PER_IMAGE, (y1, x1, y2, x2)] in normalized coordinates - class_ids: [TRAIN_ROIS_PER_IMAGE]. Integer class IDs. Zero padded. - deltas: [TRAIN_ROIS_PER_IMAGE, (dy, dx, log(dh), log(dw))] - masks: [TRAIN_ROIS_PER_IMAGE, height, width]. Masks cropped to bbox - boundaries and resized to neural network output size. - - Note: Returned arrays might be zero padded if not enough target ROIs. - """ - # Assertions - asserts = [ - tf.Assert(tf.greater(tf.shape(proposals)[0], 0), [proposals], - name="roi_assertion"), - ] - with tf.control_dependencies(asserts): - proposals = tf.identity(proposals) - - # Remove zero padding - proposals, _ = trim_zeros_graph(proposals, name="trim_proposals") - gt_boxes, non_zeros = trim_zeros_graph(gt_boxes, name="trim_gt_boxes") - gt_class_ids = tf.boolean_mask(gt_class_ids, non_zeros, - name="trim_gt_class_ids") - gt_masks = tf.gather(gt_masks, tf.where(non_zeros)[:, 0], axis=2, - name="trim_gt_masks") - - # Handle COCO crowds - # A crowd box in COCO is a bounding box around several instances. Exclude - # them from training. A crowd box is given a negative class ID. - crowd_ix = tf.where(gt_class_ids < 0)[:, 0] - non_crowd_ix = tf.where(gt_class_ids > 0)[:, 0] - crowd_boxes = tf.gather(gt_boxes, crowd_ix) - gt_class_ids = tf.gather(gt_class_ids, non_crowd_ix) - gt_boxes = tf.gather(gt_boxes, non_crowd_ix) - gt_masks = tf.gather(gt_masks, non_crowd_ix, axis=2) - - # Compute overlaps matrix [proposals, gt_boxes] - overlaps = overlaps_graph(proposals, gt_boxes) - - # Compute overlaps with crowd boxes [proposals, crowd_boxes] - crowd_overlaps = overlaps_graph(proposals, crowd_boxes) - crowd_iou_max = tf.reduce_max(crowd_overlaps, axis=1) - no_crowd_bool = (crowd_iou_max < 0.001) - - # Determine positive and negative ROIs - roi_iou_max = tf.reduce_max(overlaps, axis=1) - # 1. Positive ROIs are those with >= 0.5 IoU with a GT box - positive_roi_bool = (roi_iou_max >= 0.5) - positive_indices = tf.where(positive_roi_bool)[:, 0] - # 2. Negative ROIs are those with < 0.5 with every GT box. Skip crowds. - negative_indices = tf.where(tf.logical_and(roi_iou_max < 0.5, no_crowd_bool))[:, 0] - - # Subsample ROIs. Aim for 33% positive - # Positive ROIs - positive_count = int(config.TRAIN_ROIS_PER_IMAGE * - config.ROI_POSITIVE_RATIO) - positive_indices = tf.random_shuffle(positive_indices)[:positive_count] - positive_count = tf.shape(positive_indices)[0] - # Negative ROIs. Add enough to maintain positive:negative ratio. - r = 1.0 / config.ROI_POSITIVE_RATIO - negative_count = tf.cast(r * tf.cast(positive_count, tf.float32), tf.int32) - positive_count - negative_indices = tf.random_shuffle(negative_indices)[:negative_count] - # Gather selected ROIs - positive_rois = tf.gather(proposals, positive_indices) - negative_rois = tf.gather(proposals, negative_indices) - - # Assign positive ROIs to GT boxes. - positive_overlaps = tf.gather(overlaps, positive_indices) - roi_gt_box_assignment = tf.cond( - tf.greater(tf.shape(positive_overlaps)[1], 0), - true_fn = lambda: tf.argmax(positive_overlaps, axis=1), - false_fn = lambda: tf.cast(tf.constant([]),tf.int64) - ) - roi_gt_boxes = tf.gather(gt_boxes, roi_gt_box_assignment) - roi_gt_class_ids = tf.gather(gt_class_ids, roi_gt_box_assignment) - - # Compute bbox refinement for positive ROIs - deltas = utils.box_refinement_graph(positive_rois, roi_gt_boxes) - deltas /= config.BBOX_STD_DEV - - # Assign positive ROIs to GT masks - # Permute masks to [N, height, width, 1] - transposed_masks = tf.expand_dims(tf.transpose(gt_masks, [2, 0, 1]), -1) - # Pick the right mask for each ROI - roi_masks = tf.gather(transposed_masks, roi_gt_box_assignment) - - # Compute mask targets - boxes = positive_rois - if config.USE_MINI_MASK: - # Transform ROI coordinates from normalized image space - # to normalized mini-mask space. - y1, x1, y2, x2 = tf.split(positive_rois, 4, axis=1) - gt_y1, gt_x1, gt_y2, gt_x2 = tf.split(roi_gt_boxes, 4, axis=1) - gt_h = gt_y2 - gt_y1 - gt_w = gt_x2 - gt_x1 - y1 = (y1 - gt_y1) / gt_h - x1 = (x1 - gt_x1) / gt_w - y2 = (y2 - gt_y1) / gt_h - x2 = (x2 - gt_x1) / gt_w - boxes = tf.concat([y1, x1, y2, x2], 1) - box_ids = tf.range(0, tf.shape(roi_masks)[0]) - masks = tf.image.crop_and_resize(tf.cast(roi_masks, tf.float32), boxes, - box_ids, - config.MASK_SHAPE) - # Remove the extra dimension from masks. - masks = tf.squeeze(masks, axis=3) - - # Threshold mask pixels at 0.5 to have GT masks be 0 or 1 to use with - # binary cross entropy loss. - masks = tf.round(masks) - - # Append negative ROIs and pad bbox deltas and masks that - # are not used for negative ROIs with zeros. - rois = tf.concat([positive_rois, negative_rois], axis=0) - N = tf.shape(negative_rois)[0] - P = tf.maximum(config.TRAIN_ROIS_PER_IMAGE - tf.shape(rois)[0], 0) - rois = tf.pad(rois, [(0, P), (0, 0)]) - roi_gt_boxes = tf.pad(roi_gt_boxes, [(0, N + P), (0, 0)]) - roi_gt_class_ids = tf.pad(roi_gt_class_ids, [(0, N + P)]) - deltas = tf.pad(deltas, [(0, N + P), (0, 0)]) - masks = tf.pad(masks, [[0, N + P], (0, 0), (0, 0)]) - - return rois, roi_gt_class_ids, deltas, masks - - -class DetectionTargetLayer(KE.Layer): - """Subsamples proposals and generates target box refinement, class_ids, - and masks for each. - - Inputs: - proposals: [batch, N, (y1, x1, y2, x2)] in normalized coordinates. Might - be zero padded if there are not enough proposals. - gt_class_ids: [batch, MAX_GT_INSTANCES] Integer class IDs. - gt_boxes: [batch, MAX_GT_INSTANCES, (y1, x1, y2, x2)] in normalized - coordinates. - gt_masks: [batch, height, width, MAX_GT_INSTANCES] of boolean type - - Returns: Target ROIs and corresponding class IDs, bounding box shifts, - and masks. - rois: [batch, TRAIN_ROIS_PER_IMAGE, (y1, x1, y2, x2)] in normalized - coordinates - target_class_ids: [batch, TRAIN_ROIS_PER_IMAGE]. Integer class IDs. - target_deltas: [batch, TRAIN_ROIS_PER_IMAGE, (dy, dx, log(dh), log(dw)] - target_mask: [batch, TRAIN_ROIS_PER_IMAGE, height, width] - Masks cropped to bbox boundaries and resized to neural - network output size. - - Note: Returned arrays might be zero padded if not enough target ROIs. - """ - - def __init__(self, config, **kwargs): - super(DetectionTargetLayer, self).__init__(**kwargs) - self.config = config - - def call(self, inputs): - proposals = inputs[0] - gt_class_ids = inputs[1] - gt_boxes = inputs[2] - gt_masks = inputs[3] - - # Slice the batch and run a graph for each slice - # TODO: Rename target_bbox to target_deltas for clarity - names = ["rois", "target_class_ids", "target_bbox", "target_mask"] - outputs = utils.batch_slice( - [proposals, gt_class_ids, gt_boxes, gt_masks], - lambda w, x, y, z: detection_targets_graph( - w, x, y, z, self.config), - self.config.IMAGES_PER_GPU, names=names) - return outputs - - def compute_output_shape(self, input_shape): - return [ - (None, self.config.TRAIN_ROIS_PER_IMAGE, 4), # rois - (None, self.config.TRAIN_ROIS_PER_IMAGE), # class_ids - (None, self.config.TRAIN_ROIS_PER_IMAGE, 4), # deltas - (None, self.config.TRAIN_ROIS_PER_IMAGE, self.config.MASK_SHAPE[0], - self.config.MASK_SHAPE[1]) # masks - ] - - def compute_mask(self, inputs, mask=None): - return [None, None, None, None] - - -############################################################ -# Detection Layer -############################################################ - -def refine_detections_graph(rois, probs, deltas, window, config): - """Refine classified proposals and filter overlaps and return final - detections. - - Inputs: - rois: [N, (y1, x1, y2, x2)] in normalized coordinates - probs: [N, num_classes]. Class probabilities. - deltas: [N, num_classes, (dy, dx, log(dh), log(dw))]. Class-specific - bounding box deltas. - window: (y1, x1, y2, x2) in normalized coordinates. The part of the image - that contains the image excluding the padding. - - Returns detections shaped: [num_detections, (y1, x1, y2, x2, class_id, score)] where - coordinates are normalized. - """ - # Class IDs per ROI - class_ids = tf.argmax(probs, axis=1, output_type=tf.int32) - # Class probability of the top class of each ROI - indices = tf.stack([tf.range(probs.shape[0]), class_ids], axis=1) - class_scores = tf.gather_nd(probs, indices) - # Class-specific bounding box deltas - deltas_specific = tf.gather_nd(deltas, indices) - # Apply bounding box deltas - # Shape: [boxes, (y1, x1, y2, x2)] in normalized coordinates - refined_rois = apply_box_deltas_graph( - rois, deltas_specific * config.BBOX_STD_DEV) - # Clip boxes to image window - refined_rois = clip_boxes_graph(refined_rois, window) - - # TODO: Filter out boxes with zero area - - # Filter out background boxes - keep = tf.where(class_ids > 0)[:, 0] - # Filter out low confidence boxes - if config.DETECTION_MIN_CONFIDENCE: - conf_keep = tf.where(class_scores >= config.DETECTION_MIN_CONFIDENCE)[:, 0] - keep = tf.sets.set_intersection(tf.expand_dims(keep, 0), - tf.expand_dims(conf_keep, 0)) - keep = tf.sparse_tensor_to_dense(keep)[0] - - # Apply per-class NMS - # 1. Prepare variables - pre_nms_class_ids = tf.gather(class_ids, keep) - pre_nms_scores = tf.gather(class_scores, keep) - pre_nms_rois = tf.gather(refined_rois, keep) - unique_pre_nms_class_ids = tf.unique(pre_nms_class_ids)[0] - - def nms_keep_map(class_id): - """Apply Non-Maximum Suppression on ROIs of the given class.""" - # Indices of ROIs of the given class - ixs = tf.where(tf.equal(pre_nms_class_ids, class_id))[:, 0] - # Apply NMS - class_keep = tf.image.non_max_suppression( - tf.gather(pre_nms_rois, ixs), - tf.gather(pre_nms_scores, ixs), - max_output_size=config.DETECTION_MAX_INSTANCES, - iou_threshold=config.DETECTION_NMS_THRESHOLD) - # Map indices - class_keep = tf.gather(keep, tf.gather(ixs, class_keep)) - # Pad with -1 so returned tensors have the same shape - gap = config.DETECTION_MAX_INSTANCES - tf.shape(class_keep)[0] - class_keep = tf.pad(class_keep, [(0, gap)], - mode='CONSTANT', constant_values=-1) - # Set shape so map_fn() can infer result shape - class_keep.set_shape([config.DETECTION_MAX_INSTANCES]) - return class_keep - - # 2. Map over class IDs - nms_keep = tf.map_fn(nms_keep_map, unique_pre_nms_class_ids, - dtype=tf.int64) - # 3. Merge results into one list, and remove -1 padding - nms_keep = tf.reshape(nms_keep, [-1]) - nms_keep = tf.gather(nms_keep, tf.where(nms_keep > -1)[:, 0]) - # 4. Compute intersection between keep and nms_keep - keep = tf.sets.set_intersection(tf.expand_dims(keep, 0), - tf.expand_dims(nms_keep, 0)) - keep = tf.sparse_tensor_to_dense(keep)[0] - # Keep top detections - roi_count = config.DETECTION_MAX_INSTANCES - class_scores_keep = tf.gather(class_scores, keep) - num_keep = tf.minimum(tf.shape(class_scores_keep)[0], roi_count) - top_ids = tf.nn.top_k(class_scores_keep, k=num_keep, sorted=True)[1] - keep = tf.gather(keep, top_ids) - - # Arrange output as [N, (y1, x1, y2, x2, class_id, score)] - # Coordinates are normalized. - detections = tf.concat([ - tf.gather(refined_rois, keep), - tf.to_float(tf.gather(class_ids, keep))[..., tf.newaxis], - tf.gather(class_scores, keep)[..., tf.newaxis] - ], axis=1) - - # Pad with zeros if detections < DETECTION_MAX_INSTANCES - gap = config.DETECTION_MAX_INSTANCES - tf.shape(detections)[0] - detections = tf.pad(detections, [(0, gap), (0, 0)], "CONSTANT") - return detections - - -class DetectionLayer(KE.Layer): - """Takes classified proposal boxes and their bounding box deltas and - returns the final detection boxes. - - Returns: - [batch, num_detections, (y1, x1, y2, x2, class_id, class_score)] where - coordinates are normalized. - """ - - def __init__(self, config=None, **kwargs): - super(DetectionLayer, self).__init__(**kwargs) - self.config = config - - def call(self, inputs): - rois = inputs[0] - mrcnn_class = inputs[1] - mrcnn_bbox = inputs[2] - image_meta = inputs[3] - - # Get windows of images in normalized coordinates. Windows are the area - # in the image that excludes the padding. - # Use the shape of the first image in the batch to normalize the window - # because we know that all images get resized to the same size. - m = parse_image_meta_graph(image_meta) - image_shape = m['image_shape'][0] - window = norm_boxes_graph(m['window'], image_shape[:2]) - - # Run detection refinement graph on each item in the batch - detections_batch = utils.batch_slice( - [rois, mrcnn_class, mrcnn_bbox, window], - lambda x, y, w, z: refine_detections_graph(x, y, w, z, self.config), - self.config.IMAGES_PER_GPU) - - # Reshape output - # [batch, num_detections, (y1, x1, y2, x2, class_id, class_score)] in - # normalized coordinates - return tf.reshape( - detections_batch, - [self.config.BATCH_SIZE, self.config.DETECTION_MAX_INSTANCES, 6]) - - def compute_output_shape(self, input_shape): - return (None, self.config.DETECTION_MAX_INSTANCES, 6) - - -############################################################ -# Region Proposal Network (RPN) -############################################################ - -def rpn_graph(feature_map, anchors_per_location, anchor_stride): - """Builds the computation graph of Region Proposal Network. - - feature_map: backbone features [batch, height, width, depth] - anchors_per_location: number of anchors per pixel in the feature map - anchor_stride: Controls the density of anchors. Typically 1 (anchors for - every pixel in the feature map), or 2 (every other pixel). - - Returns: - rpn_class_logits: [batch, H * W * anchors_per_location, 2] Anchor classifier logits (before softmax) - rpn_probs: [batch, H * W * anchors_per_location, 2] Anchor classifier probabilities. - rpn_bbox: [batch, H * W * anchors_per_location, (dy, dx, log(dh), log(dw))] Deltas to be - applied to anchors. - """ - # TODO: check if stride of 2 causes alignment issues if the feature map - # is not even. - # Shared convolutional base of the RPN - shared = KL.Conv2D(512, (3, 3), padding='same', activation='relu', - strides=anchor_stride, - name='rpn_conv_shared')(feature_map) - - # Anchor Score. [batch, height, width, anchors per location * 2]. - x = KL.Conv2D(2 * anchors_per_location, (1, 1), padding='valid', - activation='linear', name='rpn_class_raw')(shared) - - # Reshape to [batch, anchors, 2] - rpn_class_logits = KL.Lambda( - lambda t: tf.reshape(t, [tf.shape(t)[0], -1, 2]))(x) - - # Softmax on last dimension of BG/FG. - rpn_probs = KL.Activation( - "softmax", name="rpn_class_xxx")(rpn_class_logits) - - # Bounding box refinement. [batch, H, W, anchors per location * depth] - # where depth is [x, y, log(w), log(h)] - x = KL.Conv2D(anchors_per_location * 4, (1, 1), padding="valid", - activation='linear', name='rpn_bbox_pred')(shared) - - # Reshape to [batch, anchors, 4] - rpn_bbox = KL.Lambda(lambda t: tf.reshape(t, [tf.shape(t)[0], -1, 4]))(x) - - return [rpn_class_logits, rpn_probs, rpn_bbox] - - -def build_rpn_model(anchor_stride, anchors_per_location, depth): - """Builds a Keras model of the Region Proposal Network. - It wraps the RPN graph so it can be used multiple times with shared - weights. - - anchors_per_location: number of anchors per pixel in the feature map - anchor_stride: Controls the density of anchors. Typically 1 (anchors for - every pixel in the feature map), or 2 (every other pixel). - depth: Depth of the backbone feature map. - - Returns a Keras Model object. The model outputs, when called, are: - rpn_class_logits: [batch, H * W * anchors_per_location, 2] Anchor classifier logits (before softmax) - rpn_probs: [batch, H * W * anchors_per_location, 2] Anchor classifier probabilities. - rpn_bbox: [batch, H * W * anchors_per_location, (dy, dx, log(dh), log(dw))] Deltas to be - applied to anchors. - """ - input_feature_map = KL.Input(shape=[None, None, depth], - name="input_rpn_feature_map") - outputs = rpn_graph(input_feature_map, anchors_per_location, anchor_stride) - return KM.Model([input_feature_map], outputs, name="rpn_model") - - -############################################################ -# Feature Pyramid Network Heads -############################################################ - -def fpn_classifier_graph(rois, feature_maps, image_meta, - pool_size, num_classes, train_bn=True, - fc_layers_size=1024): - """Builds the computation graph of the feature pyramid network classifier - and regressor heads. - - rois: [batch, num_rois, (y1, x1, y2, x2)] Proposal boxes in normalized - coordinates. - feature_maps: List of feature maps from different layers of the pyramid, - [P2, P3, P4, P5]. Each has a different resolution. - image_meta: [batch, (meta data)] Image details. See compose_image_meta() - pool_size: The width of the square feature map generated from ROI Pooling. - num_classes: number of classes, which determines the depth of the results - train_bn: Boolean. Train or freeze Batch Norm layers - fc_layers_size: Size of the 2 FC layers - - Returns: - logits: [batch, num_rois, NUM_CLASSES] classifier logits (before softmax) - probs: [batch, num_rois, NUM_CLASSES] classifier probabilities - bbox_deltas: [batch, num_rois, NUM_CLASSES, (dy, dx, log(dh), log(dw))] Deltas to apply to - proposal boxes - """ - # ROI Pooling - # Shape: [batch, num_rois, POOL_SIZE, POOL_SIZE, channels] - x = PyramidROIAlign([pool_size, pool_size], - name="roi_align_classifier")([rois, image_meta] + feature_maps) - # Two 1024 FC layers (implemented with Conv2D for consistency) - x = KL.TimeDistributed(KL.Conv2D(fc_layers_size, (pool_size, pool_size), padding="valid"), - name="mrcnn_class_conv1")(x) - x = KL.TimeDistributed(BatchNorm(), name='mrcnn_class_bn1')(x, training=train_bn) - x = KL.Activation('relu')(x) - x = KL.TimeDistributed(KL.Conv2D(fc_layers_size, (1, 1)), - name="mrcnn_class_conv2")(x) - x = KL.TimeDistributed(BatchNorm(), name='mrcnn_class_bn2')(x, training=train_bn) - x = KL.Activation('relu')(x) - - shared = KL.Lambda(lambda x: K.squeeze(K.squeeze(x, 3), 2), - name="pool_squeeze")(x) - - # Classifier head - mrcnn_class_logits = KL.TimeDistributed(KL.Dense(num_classes), - name='mrcnn_class_logits')(shared) - mrcnn_probs = KL.TimeDistributed(KL.Activation("softmax"), - name="mrcnn_class")(mrcnn_class_logits) - - # BBox head - # [batch, num_rois, NUM_CLASSES * (dy, dx, log(dh), log(dw))] - x = KL.TimeDistributed(KL.Dense(num_classes * 4, activation='linear'), - name='mrcnn_bbox_fc')(shared) - # Reshape to [batch, num_rois, NUM_CLASSES, (dy, dx, log(dh), log(dw))] - s = K.int_shape(x) - mrcnn_bbox = KL.Reshape((s[1], num_classes, 4), name="mrcnn_bbox")(x) - - return mrcnn_class_logits, mrcnn_probs, mrcnn_bbox - - -def build_fpn_mask_graph(rois, feature_maps, image_meta, - pool_size, num_classes, train_bn=True): - """Builds the computation graph of the mask head of Feature Pyramid Network. - - rois: [batch, num_rois, (y1, x1, y2, x2)] Proposal boxes in normalized - coordinates. - feature_maps: List of feature maps from different layers of the pyramid, - [P2, P3, P4, P5]. Each has a different resolution. - image_meta: [batch, (meta data)] Image details. See compose_image_meta() - pool_size: The width of the square feature map generated from ROI Pooling. - num_classes: number of classes, which determines the depth of the results - train_bn: Boolean. Train or freeze Batch Norm layers - - Returns: Masks [batch, num_rois, MASK_POOL_SIZE, MASK_POOL_SIZE, NUM_CLASSES] - """ - # ROI Pooling - # Shape: [batch, num_rois, MASK_POOL_SIZE, MASK_POOL_SIZE, channels] - x = PyramidROIAlign([pool_size, pool_size], - name="roi_align_mask")([rois, image_meta] + feature_maps) - - # Conv layers - x = KL.TimeDistributed(KL.Conv2D(256, (3, 3), padding="same"), - name="mrcnn_mask_conv1")(x) - x = KL.TimeDistributed(BatchNorm(), - name='mrcnn_mask_bn1')(x, training=train_bn) - x = KL.Activation('relu')(x) - - x = KL.TimeDistributed(KL.Conv2D(256, (3, 3), padding="same"), - name="mrcnn_mask_conv2")(x) - x = KL.TimeDistributed(BatchNorm(), - name='mrcnn_mask_bn2')(x, training=train_bn) - x = KL.Activation('relu')(x) - - x = KL.TimeDistributed(KL.Conv2D(256, (3, 3), padding="same"), - name="mrcnn_mask_conv3")(x) - x = KL.TimeDistributed(BatchNorm(), - name='mrcnn_mask_bn3')(x, training=train_bn) - x = KL.Activation('relu')(x) - - x = KL.TimeDistributed(KL.Conv2D(256, (3, 3), padding="same"), - name="mrcnn_mask_conv4")(x) - x = KL.TimeDistributed(BatchNorm(), - name='mrcnn_mask_bn4')(x, training=train_bn) - x = KL.Activation('relu')(x) - - x = KL.TimeDistributed(KL.Conv2DTranspose(256, (2, 2), strides=2, activation="relu"), - name="mrcnn_mask_deconv")(x) - x = KL.TimeDistributed(KL.Conv2D(num_classes, (1, 1), strides=1, activation="sigmoid"), - name="mrcnn_mask")(x) - return x - - -############################################################ -# Loss Functions -############################################################ - -def smooth_l1_loss(y_true, y_pred): - """Implements Smooth-L1 loss. - y_true and y_pred are typically: [N, 4], but could be any shape. - """ - diff = K.abs(y_true - y_pred) - less_than_one = K.cast(K.less(diff, 1.0), "float32") - loss = (less_than_one * 0.5 * diff**2) + (1 - less_than_one) * (diff - 0.5) - return loss - - -def rpn_class_loss_graph(rpn_match, rpn_class_logits): - """RPN anchor classifier loss. - - rpn_match: [batch, anchors, 1]. Anchor match type. 1=positive, - -1=negative, 0=neutral anchor. - rpn_class_logits: [batch, anchors, 2]. RPN classifier logits for BG/FG. - """ - # Squeeze last dim to simplify - rpn_match = tf.squeeze(rpn_match, -1) - # Get anchor classes. Convert the -1/+1 match to 0/1 values. - anchor_class = K.cast(K.equal(rpn_match, 1), tf.int32) - # Positive and Negative anchors contribute to the loss, - # but neutral anchors (match value = 0) don't. - indices = tf.where(K.not_equal(rpn_match, 0)) - # Pick rows that contribute to the loss and filter out the rest. - rpn_class_logits = tf.gather_nd(rpn_class_logits, indices) - anchor_class = tf.gather_nd(anchor_class, indices) - # Cross entropy loss - loss = K.sparse_categorical_crossentropy(target=anchor_class, - output=rpn_class_logits, - from_logits=True) - loss = K.switch(tf.size(loss) > 0, K.mean(loss), tf.constant(0.0)) - return loss - - -def rpn_bbox_loss_graph(config, target_bbox, rpn_match, rpn_bbox): - """Return the RPN bounding box loss graph. - - config: the model config object. - target_bbox: [batch, max positive anchors, (dy, dx, log(dh), log(dw))]. - Uses 0 padding to fill in unsed bbox deltas. - rpn_match: [batch, anchors, 1]. Anchor match type. 1=positive, - -1=negative, 0=neutral anchor. - rpn_bbox: [batch, anchors, (dy, dx, log(dh), log(dw))] - """ - # Positive anchors contribute to the loss, but negative and - # neutral anchors (match value of 0 or -1) don't. - rpn_match = K.squeeze(rpn_match, -1) - indices = tf.where(K.equal(rpn_match, 1)) - - # Pick bbox deltas that contribute to the loss - rpn_bbox = tf.gather_nd(rpn_bbox, indices) - - # Trim target bounding box deltas to the same length as rpn_bbox. - batch_counts = K.sum(K.cast(K.equal(rpn_match, 1), tf.int32), axis=1) - target_bbox = batch_pack_graph(target_bbox, batch_counts, - config.IMAGES_PER_GPU) - - loss = smooth_l1_loss(target_bbox, rpn_bbox) - - loss = K.switch(tf.size(loss) > 0, K.mean(loss), tf.constant(0.0)) - return loss - - -def mrcnn_class_loss_graph(target_class_ids, pred_class_logits, - active_class_ids): - """Loss for the classifier head of Mask RCNN. - - target_class_ids: [batch, num_rois]. Integer class IDs. Uses zero - padding to fill in the array. - pred_class_logits: [batch, num_rois, num_classes] - active_class_ids: [batch, num_classes]. Has a value of 1 for - classes that are in the dataset of the image, and 0 - for classes that are not in the dataset. - """ - # During model building, Keras calls this function with - # target_class_ids of type float32. Unclear why. Cast it - # to int to get around it. - target_class_ids = tf.cast(target_class_ids, 'int64') - - # Find predictions of classes that are not in the dataset. - pred_class_ids = tf.argmax(pred_class_logits, axis=2) - # TODO: Update this line to work with batch > 1. Right now it assumes all - # images in a batch have the same active_class_ids - pred_active = tf.gather(active_class_ids[0], pred_class_ids) - - # Loss - loss = tf.nn.sparse_softmax_cross_entropy_with_logits( - labels=target_class_ids, logits=pred_class_logits) - - # Erase losses of predictions of classes that are not in the active - # classes of the image. - loss = loss * pred_active - - # Computer loss mean. Use only predictions that contribute - # to the loss to get a correct mean. - loss = tf.reduce_sum(loss) / tf.reduce_sum(pred_active) - return loss - - -def mrcnn_bbox_loss_graph(target_bbox, target_class_ids, pred_bbox): - """Loss for Mask R-CNN bounding box refinement. - - target_bbox: [batch, num_rois, (dy, dx, log(dh), log(dw))] - target_class_ids: [batch, num_rois]. Integer class IDs. - pred_bbox: [batch, num_rois, num_classes, (dy, dx, log(dh), log(dw))] - """ - # Reshape to merge batch and roi dimensions for simplicity. - target_class_ids = K.reshape(target_class_ids, (-1,)) - target_bbox = K.reshape(target_bbox, (-1, 4)) - pred_bbox = K.reshape(pred_bbox, (-1, K.int_shape(pred_bbox)[2], 4)) - - # Only positive ROIs contribute to the loss. And only - # the right class_id of each ROI. Get their indices. - positive_roi_ix = tf.where(target_class_ids > 0)[:, 0] - positive_roi_class_ids = tf.cast( - tf.gather(target_class_ids, positive_roi_ix), tf.int64) - indices = tf.stack([positive_roi_ix, positive_roi_class_ids], axis=1) - - # Gather the deltas (predicted and true) that contribute to loss - target_bbox = tf.gather(target_bbox, positive_roi_ix) - pred_bbox = tf.gather_nd(pred_bbox, indices) - - # Smooth-L1 Loss - loss = K.switch(tf.size(target_bbox) > 0, - smooth_l1_loss(y_true=target_bbox, y_pred=pred_bbox), - tf.constant(0.0)) - loss = K.mean(loss) - return loss - - -def mrcnn_mask_loss_graph(target_masks, target_class_ids, pred_masks): - """Mask binary cross-entropy loss for the masks head. - - target_masks: [batch, num_rois, height, width]. - A float32 tensor of values 0 or 1. Uses zero padding to fill array. - target_class_ids: [batch, num_rois]. Integer class IDs. Zero padded. - pred_masks: [batch, proposals, height, width, num_classes] float32 tensor - with values from 0 to 1. - """ - # Reshape for simplicity. Merge first two dimensions into one. - target_class_ids = K.reshape(target_class_ids, (-1,)) - mask_shape = tf.shape(target_masks) - target_masks = K.reshape(target_masks, (-1, mask_shape[2], mask_shape[3])) - pred_shape = tf.shape(pred_masks) - pred_masks = K.reshape(pred_masks, - (-1, pred_shape[2], pred_shape[3], pred_shape[4])) - # Permute predicted masks to [N, num_classes, height, width] - pred_masks = tf.transpose(pred_masks, [0, 3, 1, 2]) - - # Only positive ROIs contribute to the loss. And only - # the class specific mask of each ROI. - positive_ix = tf.where(target_class_ids > 0)[:, 0] - positive_class_ids = tf.cast( - tf.gather(target_class_ids, positive_ix), tf.int64) - indices = tf.stack([positive_ix, positive_class_ids], axis=1) - - # Gather the masks (predicted and true) that contribute to loss - y_true = tf.gather(target_masks, positive_ix) - y_pred = tf.gather_nd(pred_masks, indices) - - # Compute binary cross entropy. If no positive ROIs, then return 0. - # shape: [batch, roi, num_classes] - loss = K.switch(tf.size(y_true) > 0, - K.binary_crossentropy(target=y_true, output=y_pred), - tf.constant(0.0)) - loss = K.mean(loss) - return loss - - -############################################################ -# Data Generator -############################################################ - -def load_image_gt(dataset, config, image_id, augment=False, augmentation=None, - use_mini_mask=False): - """Load and return ground truth data for an image (image, mask, bounding boxes). - - augment: (deprecated. Use augmentation instead). If true, apply random - image augmentation. Currently, only horizontal flipping is offered. - augmentation: Optional. An imgaug (https://github.com/aleju/imgaug) augmentation. - For example, passing imgaug.augmenters.Fliplr(0.5) flips images - right/left 50% of the time. - use_mini_mask: If False, returns full-size masks that are the same height - and width as the original image. These can be big, for example - 1024x1024x100 (for 100 instances). Mini masks are smaller, typically, - 224x224 and are generated by extracting the bounding box of the - object and resizing it to MINI_MASK_SHAPE. - - Returns: - image: [height, width, 3] - shape: the original shape of the image before resizing and cropping. - class_ids: [instance_count] Integer class IDs - bbox: [instance_count, (y1, x1, y2, x2)] - mask: [height, width, instance_count]. The height and width are those - of the image unless use_mini_mask is True, in which case they are - defined in MINI_MASK_SHAPE. - """ - # Load image and mask - image = dataset.load_image(image_id) - mask, class_ids = dataset.load_mask(image_id) - original_shape = image.shape - image, window, scale, padding, crop = utils.resize_image( - image, - min_dim=config.IMAGE_MIN_DIM, - min_scale=config.IMAGE_MIN_SCALE, - max_dim=config.IMAGE_MAX_DIM, - mode=config.IMAGE_RESIZE_MODE) - mask = utils.resize_mask(mask, scale, padding, crop) - - # Random horizontal flips. - # TODO: will be removed in a future update in favor of augmentation - if augment: - logging.warning("'augment' is deprecated. Use 'augmentation' instead.") - if random.randint(0, 1): - image = np.fliplr(image) - mask = np.fliplr(mask) - - # Augmentation - # This requires the imgaug lib (https://github.com/aleju/imgaug) - if augmentation: - import imgaug - - # Augmenters that are safe to apply to masks - # Some, such as Affine, have settings that make them unsafe, so always - # test your augmentation on masks - MASK_AUGMENTERS = ["Sequential", "SomeOf", "OneOf", "Sometimes", - "Fliplr", "Flipud", "CropAndPad", - "Affine", "PiecewiseAffine", "KeepSizeByResize"] - - def hook(images, augmenter, parents, default): - """Determines which augmenters to apply to masks.""" - return augmenter.__class__.__name__ in MASK_AUGMENTERS - - # Store shapes before augmentation to compare - image_shape = image.shape - mask_shape = mask.shape - # Make augmenters deterministic to apply similarly to images and masks - det = augmentation.to_deterministic() - image = det.augment_image(image) - # Change mask to np.uint8 because imgaug doesn't support np.bool - mask = det.augment_image(mask.astype(np.uint8), - hooks=imgaug.HooksImages(activator=hook)) - # Verify that shapes didn't change - assert image.shape == image_shape, "Augmentation shouldn't change image size" - assert mask.shape == mask_shape, "Augmentation shouldn't change mask size" - # Change mask back to bool - mask = mask.astype(np.bool) - - # Note that some boxes might be all zeros if the corresponding mask got cropped out. - # and here is to filter them out - _idx = np.sum(mask, axis=(0, 1)) > 0 - mask = mask[:, :, _idx] - class_ids = class_ids[_idx] - # Bounding boxes. Note that some boxes might be all zeros - # if the corresponding mask got cropped out. - # bbox: [num_instances, (y1, x1, y2, x2)] - bbox = utils.extract_bboxes(mask) - - # Active classes - # Different datasets have different classes, so track the - # classes supported in the dataset of this image. - active_class_ids = np.zeros([dataset.num_classes], dtype=np.int32) - source_class_ids = dataset.source_class_ids[dataset.image_info[image_id]["source"]] - active_class_ids[source_class_ids] = 1 - - # Resize masks to smaller size to reduce memory usage - if use_mini_mask: - mask = utils.minimize_mask(bbox, mask, config.MINI_MASK_SHAPE) - - # Image meta data - image_meta = compose_image_meta(image_id, original_shape, image.shape, - window, scale, active_class_ids) - - return image, image_meta, class_ids, bbox, mask - - -def build_detection_targets(rpn_rois, gt_class_ids, gt_boxes, gt_masks, config): - """Generate targets for training Stage 2 classifier and mask heads. - This is not used in normal training. It's useful for debugging or to train - the Mask RCNN heads without using the RPN head. - - Inputs: - rpn_rois: [N, (y1, x1, y2, x2)] proposal boxes. - gt_class_ids: [instance count] Integer class IDs - gt_boxes: [instance count, (y1, x1, y2, x2)] - gt_masks: [height, width, instance count] Ground truth masks. Can be full - size or mini-masks. - - Returns: - rois: [TRAIN_ROIS_PER_IMAGE, (y1, x1, y2, x2)] - class_ids: [TRAIN_ROIS_PER_IMAGE]. Integer class IDs. - bboxes: [TRAIN_ROIS_PER_IMAGE, NUM_CLASSES, (y, x, log(h), log(w))]. Class-specific - bbox refinements. - masks: [TRAIN_ROIS_PER_IMAGE, height, width, NUM_CLASSES). Class specific masks cropped - to bbox boundaries and resized to neural network output size. - """ - assert rpn_rois.shape[0] > 0 - assert gt_class_ids.dtype == np.int32, "Expected int but got {}".format( - gt_class_ids.dtype) - assert gt_boxes.dtype == np.int32, "Expected int but got {}".format( - gt_boxes.dtype) - assert gt_masks.dtype == np.bool_, "Expected bool but got {}".format( - gt_masks.dtype) - - # It's common to add GT Boxes to ROIs but we don't do that here because - # according to XinLei Chen's paper, it doesn't help. - - # Trim empty padding in gt_boxes and gt_masks parts - instance_ids = np.where(gt_class_ids > 0)[0] - assert instance_ids.shape[0] > 0, "Image must contain instances." - gt_class_ids = gt_class_ids[instance_ids] - gt_boxes = gt_boxes[instance_ids] - gt_masks = gt_masks[:, :, instance_ids] - - # Compute areas of ROIs and ground truth boxes. - rpn_roi_area = (rpn_rois[:, 2] - rpn_rois[:, 0]) * \ - (rpn_rois[:, 3] - rpn_rois[:, 1]) - gt_box_area = (gt_boxes[:, 2] - gt_boxes[:, 0]) * \ - (gt_boxes[:, 3] - gt_boxes[:, 1]) - - # Compute overlaps [rpn_rois, gt_boxes] - overlaps = np.zeros((rpn_rois.shape[0], gt_boxes.shape[0])) - for i in range(overlaps.shape[1]): - gt = gt_boxes[i] - overlaps[:, i] = utils.compute_iou( - gt, rpn_rois, gt_box_area[i], rpn_roi_area) - - # Assign ROIs to GT boxes - rpn_roi_iou_argmax = np.argmax(overlaps, axis=1) - rpn_roi_iou_max = overlaps[np.arange( - overlaps.shape[0]), rpn_roi_iou_argmax] - # GT box assigned to each ROI - rpn_roi_gt_boxes = gt_boxes[rpn_roi_iou_argmax] - rpn_roi_gt_class_ids = gt_class_ids[rpn_roi_iou_argmax] - - # Positive ROIs are those with >= 0.5 IoU with a GT box. - fg_ids = np.where(rpn_roi_iou_max > 0.5)[0] - - # Negative ROIs are those with max IoU 0.1-0.5 (hard example mining) - # TODO: To hard example mine or not to hard example mine, that's the question - # bg_ids = np.where((rpn_roi_iou_max >= 0.1) & (rpn_roi_iou_max < 0.5))[0] - bg_ids = np.where(rpn_roi_iou_max < 0.5)[0] - - # Subsample ROIs. Aim for 33% foreground. - # FG - fg_roi_count = int(config.TRAIN_ROIS_PER_IMAGE * config.ROI_POSITIVE_RATIO) - if fg_ids.shape[0] > fg_roi_count: - keep_fg_ids = np.random.choice(fg_ids, fg_roi_count, replace=False) - else: - keep_fg_ids = fg_ids - # BG - remaining = config.TRAIN_ROIS_PER_IMAGE - keep_fg_ids.shape[0] - if bg_ids.shape[0] > remaining: - keep_bg_ids = np.random.choice(bg_ids, remaining, replace=False) - else: - keep_bg_ids = bg_ids - # Combine indices of ROIs to keep - keep = np.concatenate([keep_fg_ids, keep_bg_ids]) - # Need more? - remaining = config.TRAIN_ROIS_PER_IMAGE - keep.shape[0] - if remaining > 0: - # Looks like we don't have enough samples to maintain the desired - # balance. Reduce requirements and fill in the rest. This is - # likely different from the Mask RCNN paper. - - # There is a small chance we have neither fg nor bg samples. - if keep.shape[0] == 0: - # Pick bg regions with easier IoU threshold - bg_ids = np.where(rpn_roi_iou_max < 0.5)[0] - assert bg_ids.shape[0] >= remaining - keep_bg_ids = np.random.choice(bg_ids, remaining, replace=False) - assert keep_bg_ids.shape[0] == remaining - keep = np.concatenate([keep, keep_bg_ids]) - else: - # Fill the rest with repeated bg rois. - keep_extra_ids = np.random.choice( - keep_bg_ids, remaining, replace=True) - keep = np.concatenate([keep, keep_extra_ids]) - assert keep.shape[0] == config.TRAIN_ROIS_PER_IMAGE, \ - "keep doesn't match ROI batch size {}, {}".format( - keep.shape[0], config.TRAIN_ROIS_PER_IMAGE) - - # Reset the gt boxes assigned to BG ROIs. - rpn_roi_gt_boxes[keep_bg_ids, :] = 0 - rpn_roi_gt_class_ids[keep_bg_ids] = 0 - - # For each kept ROI, assign a class_id, and for FG ROIs also add bbox refinement. - rois = rpn_rois[keep] - roi_gt_boxes = rpn_roi_gt_boxes[keep] - roi_gt_class_ids = rpn_roi_gt_class_ids[keep] - roi_gt_assignment = rpn_roi_iou_argmax[keep] - - # Class-aware bbox deltas. [y, x, log(h), log(w)] - bboxes = np.zeros((config.TRAIN_ROIS_PER_IMAGE, - config.NUM_CLASSES, 4), dtype=np.float32) - pos_ids = np.where(roi_gt_class_ids > 0)[0] - bboxes[pos_ids, roi_gt_class_ids[pos_ids]] = utils.box_refinement( - rois[pos_ids], roi_gt_boxes[pos_ids, :4]) - # Normalize bbox refinements - bboxes /= config.BBOX_STD_DEV - - # Generate class-specific target masks - masks = np.zeros((config.TRAIN_ROIS_PER_IMAGE, config.MASK_SHAPE[0], config.MASK_SHAPE[1], config.NUM_CLASSES), - dtype=np.float32) - for i in pos_ids: - class_id = roi_gt_class_ids[i] - assert class_id > 0, "class id must be greater than 0" - gt_id = roi_gt_assignment[i] - class_mask = gt_masks[:, :, gt_id] - - if config.USE_MINI_MASK: - # Create a mask placeholder, the size of the image - placeholder = np.zeros(config.IMAGE_SHAPE[:2], dtype=bool) - # GT box - gt_y1, gt_x1, gt_y2, gt_x2 = gt_boxes[gt_id] - gt_w = gt_x2 - gt_x1 - gt_h = gt_y2 - gt_y1 - # Resize mini mask to size of GT box - placeholder[gt_y1:gt_y2, gt_x1:gt_x2] = \ - np.round(utils.resize(class_mask, (gt_h, gt_w))).astype(bool) - # Place the mini batch in the placeholder - class_mask = placeholder - - # Pick part of the mask and resize it - y1, x1, y2, x2 = rois[i].astype(np.int32) - m = class_mask[y1:y2, x1:x2] - mask = utils.resize(m, config.MASK_SHAPE) - masks[i, :, :, class_id] = mask - - return rois, roi_gt_class_ids, bboxes, masks - - -def build_rpn_targets(image_shape, anchors, gt_class_ids, gt_boxes, config): - """Given the anchors and GT boxes, compute overlaps and identify positive - anchors and deltas to refine them to match their corresponding GT boxes. - - anchors: [num_anchors, (y1, x1, y2, x2)] - gt_class_ids: [num_gt_boxes] Integer class IDs. - gt_boxes: [num_gt_boxes, (y1, x1, y2, x2)] - - Returns: - rpn_match: [N] (int32) matches between anchors and GT boxes. - 1 = positive anchor, -1 = negative anchor, 0 = neutral - rpn_bbox: [N, (dy, dx, log(dh), log(dw))] Anchor bbox deltas. - """ - # RPN Match: 1 = positive anchor, -1 = negative anchor, 0 = neutral - rpn_match = np.zeros([anchors.shape[0]], dtype=np.int32) - # RPN bounding boxes: [max anchors per image, (dy, dx, log(dh), log(dw))] - rpn_bbox = np.zeros((config.RPN_TRAIN_ANCHORS_PER_IMAGE, 4)) - - # Handle COCO crowds - # A crowd box in COCO is a bounding box around several instances. Exclude - # them from training. A crowd box is given a negative class ID. - crowd_ix = np.where(gt_class_ids < 0)[0] - if crowd_ix.shape[0] > 0: - # Filter out crowds from ground truth class IDs and boxes - non_crowd_ix = np.where(gt_class_ids > 0)[0] - crowd_boxes = gt_boxes[crowd_ix] - gt_class_ids = gt_class_ids[non_crowd_ix] - gt_boxes = gt_boxes[non_crowd_ix] - # Compute overlaps with crowd boxes [anchors, crowds] - crowd_overlaps = utils.compute_overlaps(anchors, crowd_boxes) - crowd_iou_max = np.amax(crowd_overlaps, axis=1) - no_crowd_bool = (crowd_iou_max < 0.001) - else: - # All anchors don't intersect a crowd - no_crowd_bool = np.ones([anchors.shape[0]], dtype=bool) - - # Compute overlaps [num_anchors, num_gt_boxes] - overlaps = utils.compute_overlaps(anchors, gt_boxes) - - # Match anchors to GT Boxes - # If an anchor overlaps a GT box with IoU >= 0.7 then it's positive. - # If an anchor overlaps a GT box with IoU < 0.3 then it's negative. - # Neutral anchors are those that don't match the conditions above, - # and they don't influence the loss function. - # However, don't keep any GT box unmatched (rare, but happens). Instead, - # match it to the closest anchor (even if its max IoU is < 0.3). - # - # 1. Set negative anchors first. They get overwritten below if a GT box is - # matched to them. Skip boxes in crowd areas. - anchor_iou_argmax = np.argmax(overlaps, axis=1) - anchor_iou_max = overlaps[np.arange(overlaps.shape[0]), anchor_iou_argmax] - rpn_match[(anchor_iou_max < 0.3) & (no_crowd_bool)] = -1 - # 2. Set an anchor for each GT box (regardless of IoU value). - # If multiple anchors have the same IoU match all of them - gt_iou_argmax = np.argwhere(overlaps == np.max(overlaps, axis=0))[:,0] - rpn_match[gt_iou_argmax] = 1 - # 3. Set anchors with high overlap as positive. - rpn_match[anchor_iou_max >= 0.7] = 1 - - # Subsample to balance positive and negative anchors - # Don't let positives be more than half the anchors - ids = np.where(rpn_match == 1)[0] - extra = len(ids) - (config.RPN_TRAIN_ANCHORS_PER_IMAGE // 2) - if extra > 0: - # Reset the extra ones to neutral - ids = np.random.choice(ids, extra, replace=False) - rpn_match[ids] = 0 - # Same for negative proposals - ids = np.where(rpn_match == -1)[0] - extra = len(ids) - (config.RPN_TRAIN_ANCHORS_PER_IMAGE - - np.sum(rpn_match == 1)) - if extra > 0: - # Rest the extra ones to neutral - ids = np.random.choice(ids, extra, replace=False) - rpn_match[ids] = 0 - - # For positive anchors, compute shift and scale needed to transform them - # to match the corresponding GT boxes. - ids = np.where(rpn_match == 1)[0] - ix = 0 # index into rpn_bbox - # TODO: use box_refinement() rather than duplicating the code here - for i, a in zip(ids, anchors[ids]): - # Closest gt box (it might have IoU < 0.7) - gt = gt_boxes[anchor_iou_argmax[i]] - - # Convert coordinates to center plus width/height. - # GT Box - gt_h = gt[2] - gt[0] - gt_w = gt[3] - gt[1] - gt_center_y = gt[0] + 0.5 * gt_h - gt_center_x = gt[1] + 0.5 * gt_w - # Anchor - a_h = a[2] - a[0] - a_w = a[3] - a[1] - a_center_y = a[0] + 0.5 * a_h - a_center_x = a[1] + 0.5 * a_w - - # Compute the bbox refinement that the RPN should predict. - rpn_bbox[ix] = [ - (gt_center_y - a_center_y) / a_h, - (gt_center_x - a_center_x) / a_w, - np.log(gt_h / a_h), - np.log(gt_w / a_w), - ] - # Normalize - rpn_bbox[ix] /= config.RPN_BBOX_STD_DEV - ix += 1 - - return rpn_match, rpn_bbox - - -def generate_random_rois(image_shape, count, gt_class_ids, gt_boxes): - """Generates ROI proposals similar to what a region proposal network - would generate. - - image_shape: [Height, Width, Depth] - count: Number of ROIs to generate - gt_class_ids: [N] Integer ground truth class IDs - gt_boxes: [N, (y1, x1, y2, x2)] Ground truth boxes in pixels. - - Returns: [count, (y1, x1, y2, x2)] ROI boxes in pixels. - """ - # placeholder - rois = np.zeros((count, 4), dtype=np.int32) - - # Generate random ROIs around GT boxes (90% of count) - rois_per_box = int(0.9 * count / gt_boxes.shape[0]) - for i in range(gt_boxes.shape[0]): - gt_y1, gt_x1, gt_y2, gt_x2 = gt_boxes[i] - h = gt_y2 - gt_y1 - w = gt_x2 - gt_x1 - # random boundaries - r_y1 = max(gt_y1 - h, 0) - r_y2 = min(gt_y2 + h, image_shape[0]) - r_x1 = max(gt_x1 - w, 0) - r_x2 = min(gt_x2 + w, image_shape[1]) - - # To avoid generating boxes with zero area, we generate double what - # we need and filter out the extra. If we get fewer valid boxes - # than we need, we loop and try again. - while True: - y1y2 = np.random.randint(r_y1, r_y2, (rois_per_box * 2, 2)) - x1x2 = np.random.randint(r_x1, r_x2, (rois_per_box * 2, 2)) - # Filter out zero area boxes - threshold = 1 - y1y2 = y1y2[np.abs(y1y2[:, 0] - y1y2[:, 1]) >= - threshold][:rois_per_box] - x1x2 = x1x2[np.abs(x1x2[:, 0] - x1x2[:, 1]) >= - threshold][:rois_per_box] - if y1y2.shape[0] == rois_per_box and x1x2.shape[0] == rois_per_box: - break - - # Sort on axis 1 to ensure x1 <= x2 and y1 <= y2 and then reshape - # into x1, y1, x2, y2 order - x1, x2 = np.split(np.sort(x1x2, axis=1), 2, axis=1) - y1, y2 = np.split(np.sort(y1y2, axis=1), 2, axis=1) - box_rois = np.hstack([y1, x1, y2, x2]) - rois[rois_per_box * i:rois_per_box * (i + 1)] = box_rois - - # Generate random ROIs anywhere in the image (10% of count) - remaining_count = count - (rois_per_box * gt_boxes.shape[0]) - # To avoid generating boxes with zero area, we generate double what - # we need and filter out the extra. If we get fewer valid boxes - # than we need, we loop and try again. - while True: - y1y2 = np.random.randint(0, image_shape[0], (remaining_count * 2, 2)) - x1x2 = np.random.randint(0, image_shape[1], (remaining_count * 2, 2)) - # Filter out zero area boxes - threshold = 1 - y1y2 = y1y2[np.abs(y1y2[:, 0] - y1y2[:, 1]) >= - threshold][:remaining_count] - x1x2 = x1x2[np.abs(x1x2[:, 0] - x1x2[:, 1]) >= - threshold][:remaining_count] - if y1y2.shape[0] == remaining_count and x1x2.shape[0] == remaining_count: - break - - # Sort on axis 1 to ensure x1 <= x2 and y1 <= y2 and then reshape - # into x1, y1, x2, y2 order - x1, x2 = np.split(np.sort(x1x2, axis=1), 2, axis=1) - y1, y2 = np.split(np.sort(y1y2, axis=1), 2, axis=1) - global_rois = np.hstack([y1, x1, y2, x2]) - rois[-remaining_count:] = global_rois - return rois - - -def data_generator(dataset, config, shuffle=True, augment=False, augmentation=None, - random_rois=0, batch_size=1, detection_targets=False, - no_augmentation_sources=None): - """A generator that returns images and corresponding target class ids, - bounding box deltas, and masks. - - dataset: The Dataset object to pick data from - config: The model config object - shuffle: If True, shuffles the samples before every epoch - augment: (deprecated. Use augmentation instead). If true, apply random - image augmentation. Currently, only horizontal flipping is offered. - augmentation: Optional. An imgaug (https://github.com/aleju/imgaug) augmentation. - For example, passing imgaug.augmenters.Fliplr(0.5) flips images - right/left 50% of the time. - random_rois: If > 0 then generate proposals to be used to train the - network classifier and mask heads. Useful if training - the Mask RCNN part without the RPN. - batch_size: How many images to return in each call - detection_targets: If True, generate detection targets (class IDs, bbox - deltas, and masks). Typically for debugging or visualizations because - in trainig detection targets are generated by DetectionTargetLayer. - no_augmentation_sources: Optional. List of sources to exclude for - augmentation. A source is string that identifies a dataset and is - defined in the Dataset class. - - Returns a Python generator. Upon calling next() on it, the - generator returns two lists, inputs and outputs. The contents - of the lists differs depending on the received arguments: - inputs list: - - images: [batch, H, W, C] - - image_meta: [batch, (meta data)] Image details. See compose_image_meta() - - rpn_match: [batch, N] Integer (1=positive anchor, -1=negative, 0=neutral) - - rpn_bbox: [batch, N, (dy, dx, log(dh), log(dw))] Anchor bbox deltas. - - gt_class_ids: [batch, MAX_GT_INSTANCES] Integer class IDs - - gt_boxes: [batch, MAX_GT_INSTANCES, (y1, x1, y2, x2)] - - gt_masks: [batch, height, width, MAX_GT_INSTANCES]. The height and width - are those of the image unless use_mini_mask is True, in which - case they are defined in MINI_MASK_SHAPE. - - outputs list: Usually empty in regular training. But if detection_targets - is True then the outputs list contains target class_ids, bbox deltas, - and masks. - """ - b = 0 # batch item index - image_index = -1 - image_ids = np.copy(dataset.image_ids) - error_count = 0 - no_augmentation_sources = no_augmentation_sources or [] - - # Anchors - # [anchor_count, (y1, x1, y2, x2)] - backbone_shapes = compute_backbone_shapes(config, config.IMAGE_SHAPE) - anchors = utils.generate_pyramid_anchors(config.RPN_ANCHOR_SCALES, - config.RPN_ANCHOR_RATIOS, - backbone_shapes, - config.BACKBONE_STRIDES, - config.RPN_ANCHOR_STRIDE) - - # Keras requires a generator to run indefinitely. - while True: - try: - # Increment index to pick next image. Shuffle if at the start of an epoch. - image_index = (image_index + 1) % len(image_ids) - if shuffle and image_index == 0: - np.random.shuffle(image_ids) - - # Get GT bounding boxes and masks for image. - image_id = image_ids[image_index] - - # If the image source is not to be augmented pass None as augmentation - if dataset.image_info[image_id]['source'] in no_augmentation_sources: - image, image_meta, gt_class_ids, gt_boxes, gt_masks = \ - load_image_gt(dataset, config, image_id, augment=augment, - augmentation=None, - use_mini_mask=config.USE_MINI_MASK) - else: - image, image_meta, gt_class_ids, gt_boxes, gt_masks = \ - load_image_gt(dataset, config, image_id, augment=augment, - augmentation=augmentation, - use_mini_mask=config.USE_MINI_MASK) - - # Skip images that have no instances. This can happen in cases - # where we train on a subset of classes and the image doesn't - # have any of the classes we care about. - if not np.any(gt_class_ids > 0): - continue - - # RPN Targets - rpn_match, rpn_bbox = build_rpn_targets(image.shape, anchors, - gt_class_ids, gt_boxes, config) - - # Mask R-CNN Targets - if random_rois: - rpn_rois = generate_random_rois( - image.shape, random_rois, gt_class_ids, gt_boxes) - if detection_targets: - rois, mrcnn_class_ids, mrcnn_bbox, mrcnn_mask =\ - build_detection_targets( - rpn_rois, gt_class_ids, gt_boxes, gt_masks, config) - - # Init batch arrays - if b == 0: - batch_image_meta = np.zeros( - (batch_size,) + image_meta.shape, dtype=image_meta.dtype) - batch_rpn_match = np.zeros( - [batch_size, anchors.shape[0], 1], dtype=rpn_match.dtype) - batch_rpn_bbox = np.zeros( - [batch_size, config.RPN_TRAIN_ANCHORS_PER_IMAGE, 4], dtype=rpn_bbox.dtype) - batch_images = np.zeros( - (batch_size,) + image.shape, dtype=np.float32) - batch_gt_class_ids = np.zeros( - (batch_size, config.MAX_GT_INSTANCES), dtype=np.int32) - batch_gt_boxes = np.zeros( - (batch_size, config.MAX_GT_INSTANCES, 4), dtype=np.int32) - batch_gt_masks = np.zeros( - (batch_size, gt_masks.shape[0], gt_masks.shape[1], - config.MAX_GT_INSTANCES), dtype=gt_masks.dtype) - if random_rois: - batch_rpn_rois = np.zeros( - (batch_size, rpn_rois.shape[0], 4), dtype=rpn_rois.dtype) - if detection_targets: - batch_rois = np.zeros( - (batch_size,) + rois.shape, dtype=rois.dtype) - batch_mrcnn_class_ids = np.zeros( - (batch_size,) + mrcnn_class_ids.shape, dtype=mrcnn_class_ids.dtype) - batch_mrcnn_bbox = np.zeros( - (batch_size,) + mrcnn_bbox.shape, dtype=mrcnn_bbox.dtype) - batch_mrcnn_mask = np.zeros( - (batch_size,) + mrcnn_mask.shape, dtype=mrcnn_mask.dtype) - - # If more instances than fits in the array, sub-sample from them. - if gt_boxes.shape[0] > config.MAX_GT_INSTANCES: - ids = np.random.choice( - np.arange(gt_boxes.shape[0]), config.MAX_GT_INSTANCES, replace=False) - gt_class_ids = gt_class_ids[ids] - gt_boxes = gt_boxes[ids] - gt_masks = gt_masks[:, :, ids] - - # Add to batch - batch_image_meta[b] = image_meta - batch_rpn_match[b] = rpn_match[:, np.newaxis] - batch_rpn_bbox[b] = rpn_bbox - batch_images[b] = mold_image(image.astype(np.float32), config) - batch_gt_class_ids[b, :gt_class_ids.shape[0]] = gt_class_ids - batch_gt_boxes[b, :gt_boxes.shape[0]] = gt_boxes - batch_gt_masks[b, :, :, :gt_masks.shape[-1]] = gt_masks - if random_rois: - batch_rpn_rois[b] = rpn_rois - if detection_targets: - batch_rois[b] = rois - batch_mrcnn_class_ids[b] = mrcnn_class_ids - batch_mrcnn_bbox[b] = mrcnn_bbox - batch_mrcnn_mask[b] = mrcnn_mask - b += 1 - - # Batch full? - if b >= batch_size: - inputs = [batch_images, batch_image_meta, batch_rpn_match, batch_rpn_bbox, - batch_gt_class_ids, batch_gt_boxes, batch_gt_masks] - outputs = [] - - if random_rois: - inputs.extend([batch_rpn_rois]) - if detection_targets: - inputs.extend([batch_rois]) - # Keras requires that output and targets have the same number of dimensions - batch_mrcnn_class_ids = np.expand_dims( - batch_mrcnn_class_ids, -1) - outputs.extend( - [batch_mrcnn_class_ids, batch_mrcnn_bbox, batch_mrcnn_mask]) - - yield inputs, outputs - - # start a new batch - b = 0 - except (GeneratorExit, KeyboardInterrupt): - raise - except: - # Log it and skip the image - logging.exception("Error processing image {}".format( - dataset.image_info[image_id])) - error_count += 1 - if error_count > 5: - raise - - -############################################################ -# MaskRCNN Class -############################################################ - -class MaskRCNN(): - """Encapsulates the Mask RCNN model functionality. - - The actual Keras model is in the keras_model property. - """ - - def __init__(self, mode, config, model_dir): - """ - mode: Either "training" or "inference" - config: A Sub-class of the Config class - model_dir: Directory to save training logs and trained weights - """ - assert mode in ['training', 'inference'] - self.mode = mode - self.config = config - self.model_dir = model_dir - self.set_log_dir() - self.keras_model = self.build(mode=mode, config=config) - - def build(self, mode, config): - """Build Mask R-CNN architecture. - input_shape: The shape of the input image. - mode: Either "training" or "inference". The inputs and - outputs of the model differ accordingly. - """ - assert mode in ['training', 'inference'] - - # Image size must be dividable by 2 multiple times - h, w = config.IMAGE_SHAPE[:2] - if h / 2**6 != int(h / 2**6) or w / 2**6 != int(w / 2**6): - raise Exception("Image size must be dividable by 2 at least 6 times " - "to avoid fractions when downscaling and upscaling." - "For example, use 256, 320, 384, 448, 512, ... etc. ") - - # Inputs - input_image = KL.Input( - shape=[None, None, config.IMAGE_SHAPE[2]], name="input_image") - input_image_meta = KL.Input(shape=[config.IMAGE_META_SIZE], - name="input_image_meta") - if mode == "training": - # RPN GT - input_rpn_match = KL.Input( - shape=[None, 1], name="input_rpn_match", dtype=tf.int32) - input_rpn_bbox = KL.Input( - shape=[None, 4], name="input_rpn_bbox", dtype=tf.float32) - - # Detection GT (class IDs, bounding boxes, and masks) - # 1. GT Class IDs (zero padded) - input_gt_class_ids = KL.Input( - shape=[None], name="input_gt_class_ids", dtype=tf.int32) - # 2. GT Boxes in pixels (zero padded) - # [batch, MAX_GT_INSTANCES, (y1, x1, y2, x2)] in image coordinates - input_gt_boxes = KL.Input( - shape=[None, 4], name="input_gt_boxes", dtype=tf.float32) - # Normalize coordinates - gt_boxes = KL.Lambda(lambda x: norm_boxes_graph( - x, K.shape(input_image)[1:3]))(input_gt_boxes) - # 3. GT Masks (zero padded) - # [batch, height, width, MAX_GT_INSTANCES] - if config.USE_MINI_MASK: - input_gt_masks = KL.Input( - shape=[config.MINI_MASK_SHAPE[0], - config.MINI_MASK_SHAPE[1], None], - name="input_gt_masks", dtype=bool) - else: - input_gt_masks = KL.Input( - shape=[config.IMAGE_SHAPE[0], config.IMAGE_SHAPE[1], None], - name="input_gt_masks", dtype=bool) - elif mode == "inference": - # Anchors in normalized coordinates - input_anchors = KL.Input(shape=[None, 4], name="input_anchors") - - # Build the shared convolutional layers. - # Bottom-up Layers - # Returns a list of the last layers of each stage, 5 in total. - # Don't create the thead (stage 5), so we pick the 4th item in the list. - if callable(config.BACKBONE): - _, C2, C3, C4, C5 = config.BACKBONE(input_image, stage5=True, - train_bn=config.TRAIN_BN) - else: - _, C2, C3, C4, C5 = resnet_graph(input_image, config.BACKBONE, - stage5=True, train_bn=config.TRAIN_BN) - # Top-down Layers - # TODO: add assert to varify feature map sizes match what's in config - P5 = KL.Conv2D(config.TOP_DOWN_PYRAMID_SIZE, (1, 1), name='fpn_c5p5')(C5) - P4 = KL.Add(name="fpn_p4add")([ - KL.UpSampling2D(size=(2, 2), name="fpn_p5upsampled")(P5), - KL.Conv2D(config.TOP_DOWN_PYRAMID_SIZE, (1, 1), name='fpn_c4p4')(C4)]) - P3 = KL.Add(name="fpn_p3add")([ - KL.UpSampling2D(size=(2, 2), name="fpn_p4upsampled")(P4), - KL.Conv2D(config.TOP_DOWN_PYRAMID_SIZE, (1, 1), name='fpn_c3p3')(C3)]) - P2 = KL.Add(name="fpn_p2add")([ - KL.UpSampling2D(size=(2, 2), name="fpn_p3upsampled")(P3), - KL.Conv2D(config.TOP_DOWN_PYRAMID_SIZE, (1, 1), name='fpn_c2p2')(C2)]) - # Attach 3x3 conv to all P layers to get the final feature maps. - P2 = KL.Conv2D(config.TOP_DOWN_PYRAMID_SIZE, (3, 3), padding="SAME", name="fpn_p2")(P2) - P3 = KL.Conv2D(config.TOP_DOWN_PYRAMID_SIZE, (3, 3), padding="SAME", name="fpn_p3")(P3) - P4 = KL.Conv2D(config.TOP_DOWN_PYRAMID_SIZE, (3, 3), padding="SAME", name="fpn_p4")(P4) - P5 = KL.Conv2D(config.TOP_DOWN_PYRAMID_SIZE, (3, 3), padding="SAME", name="fpn_p5")(P5) - # P6 is used for the 5th anchor scale in RPN. Generated by - # subsampling from P5 with stride of 2. - P6 = KL.MaxPooling2D(pool_size=(1, 1), strides=2, name="fpn_p6")(P5) - - # Note that P6 is used in RPN, but not in the classifier heads. - rpn_feature_maps = [P2, P3, P4, P5, P6] - mrcnn_feature_maps = [P2, P3, P4, P5] - - # Anchors - if mode == "training": - anchors = self.get_anchors(config.IMAGE_SHAPE) - # Duplicate across the batch dimension because Keras requires it - # TODO: can this be optimized to avoid duplicating the anchors? - anchors = np.broadcast_to(anchors, (config.BATCH_SIZE,) + anchors.shape) - # A hack to get around Keras's bad support for constants - anchors = KL.Lambda(lambda x: tf.Variable(anchors), name="anchors")(input_image) - else: - anchors = input_anchors - - # RPN Model - rpn = build_rpn_model(config.RPN_ANCHOR_STRIDE, - len(config.RPN_ANCHOR_RATIOS), config.TOP_DOWN_PYRAMID_SIZE) - # Loop through pyramid layers - layer_outputs = [] # list of lists - for p in rpn_feature_maps: - layer_outputs.append(rpn([p])) - # Concatenate layer outputs - # Convert from list of lists of level outputs to list of lists - # of outputs across levels. - # e.g. [[a1, b1, c1], [a2, b2, c2]] => [[a1, a2], [b1, b2], [c1, c2]] - output_names = ["rpn_class_logits", "rpn_class", "rpn_bbox"] - outputs = list(zip(*layer_outputs)) - outputs = [KL.Concatenate(axis=1, name=n)(list(o)) - for o, n in zip(outputs, output_names)] - - rpn_class_logits, rpn_class, rpn_bbox = outputs - - # Generate proposals - # Proposals are [batch, N, (y1, x1, y2, x2)] in normalized coordinates - # and zero padded. - proposal_count = config.POST_NMS_ROIS_TRAINING if mode == "training"\ - else config.POST_NMS_ROIS_INFERENCE - rpn_rois = ProposalLayer( - proposal_count=proposal_count, - nms_threshold=config.RPN_NMS_THRESHOLD, - name="ROI", - config=config)([rpn_class, rpn_bbox, anchors]) - - if mode == "training": - # Class ID mask to mark class IDs supported by the dataset the image - # came from. - active_class_ids = KL.Lambda( - lambda x: parse_image_meta_graph(x)["active_class_ids"] - )(input_image_meta) - - if not config.USE_RPN_ROIS: - # Ignore predicted ROIs and use ROIs provided as an input. - input_rois = KL.Input(shape=[config.POST_NMS_ROIS_TRAINING, 4], - name="input_roi", dtype=np.int32) - # Normalize coordinates - target_rois = KL.Lambda(lambda x: norm_boxes_graph( - x, K.shape(input_image)[1:3]))(input_rois) - else: - target_rois = rpn_rois - - # Generate detection targets - # Subsamples proposals and generates target outputs for training - # Note that proposal class IDs, gt_boxes, and gt_masks are zero - # padded. Equally, returned rois and targets are zero padded. - rois, target_class_ids, target_bbox, target_mask =\ - DetectionTargetLayer(config, name="proposal_targets")([ - target_rois, input_gt_class_ids, gt_boxes, input_gt_masks]) - - # Network Heads - # TODO: verify that this handles zero padded ROIs - mrcnn_class_logits, mrcnn_class, mrcnn_bbox =\ - fpn_classifier_graph(rois, mrcnn_feature_maps, input_image_meta, - config.POOL_SIZE, config.NUM_CLASSES, - train_bn=config.TRAIN_BN, - fc_layers_size=config.FPN_CLASSIF_FC_LAYERS_SIZE) - - mrcnn_mask = build_fpn_mask_graph(rois, mrcnn_feature_maps, - input_image_meta, - config.MASK_POOL_SIZE, - config.NUM_CLASSES, - train_bn=config.TRAIN_BN) - - # TODO: clean up (use tf.identify if necessary) - output_rois = KL.Lambda(lambda x: x * 1, name="output_rois")(rois) - - # Losses - rpn_class_loss = KL.Lambda(lambda x: rpn_class_loss_graph(*x), name="rpn_class_loss")( - [input_rpn_match, rpn_class_logits]) - rpn_bbox_loss = KL.Lambda(lambda x: rpn_bbox_loss_graph(config, *x), name="rpn_bbox_loss")( - [input_rpn_bbox, input_rpn_match, rpn_bbox]) - class_loss = KL.Lambda(lambda x: mrcnn_class_loss_graph(*x), name="mrcnn_class_loss")( - [target_class_ids, mrcnn_class_logits, active_class_ids]) - bbox_loss = KL.Lambda(lambda x: mrcnn_bbox_loss_graph(*x), name="mrcnn_bbox_loss")( - [target_bbox, target_class_ids, mrcnn_bbox]) - mask_loss = KL.Lambda(lambda x: mrcnn_mask_loss_graph(*x), name="mrcnn_mask_loss")( - [target_mask, target_class_ids, mrcnn_mask]) - - # Model - inputs = [input_image, input_image_meta, - input_rpn_match, input_rpn_bbox, input_gt_class_ids, input_gt_boxes, input_gt_masks] - if not config.USE_RPN_ROIS: - inputs.append(input_rois) - outputs = [rpn_class_logits, rpn_class, rpn_bbox, - mrcnn_class_logits, mrcnn_class, mrcnn_bbox, mrcnn_mask, - rpn_rois, output_rois, - rpn_class_loss, rpn_bbox_loss, class_loss, bbox_loss, mask_loss] - model = KM.Model(inputs, outputs, name='mask_rcnn') - else: - # Network Heads - # Proposal classifier and BBox regressor heads - mrcnn_class_logits, mrcnn_class, mrcnn_bbox =\ - fpn_classifier_graph(rpn_rois, mrcnn_feature_maps, input_image_meta, - config.POOL_SIZE, config.NUM_CLASSES, - train_bn=config.TRAIN_BN, - fc_layers_size=config.FPN_CLASSIF_FC_LAYERS_SIZE) - - # Detections - # output is [batch, num_detections, (y1, x1, y2, x2, class_id, score)] in - # normalized coordinates - detections = DetectionLayer(config, name="mrcnn_detection")( - [rpn_rois, mrcnn_class, mrcnn_bbox, input_image_meta]) - - # Create masks for detections - detection_boxes = KL.Lambda(lambda x: x[..., :4])(detections) - mrcnn_mask = build_fpn_mask_graph(detection_boxes, mrcnn_feature_maps, - input_image_meta, - config.MASK_POOL_SIZE, - config.NUM_CLASSES, - train_bn=config.TRAIN_BN) - - model = KM.Model([input_image, input_image_meta, input_anchors], - [detections, mrcnn_class, mrcnn_bbox, - mrcnn_mask, rpn_rois, rpn_class, rpn_bbox], - name='mask_rcnn') - - # Add multi-GPU support. - if config.GPU_COUNT > 1: - from mrcnn.parallel_model import ParallelModel - model = ParallelModel(model, config.GPU_COUNT) - - return model - - def find_last(self): - """Finds the last checkpoint file of the last trained model in the - model directory. - Returns: - The path of the last checkpoint file - """ - # Get directory names. Each directory corresponds to a model - dir_names = next(os.walk(self.model_dir))[1] - key = self.config.NAME.lower() - dir_names = filter(lambda f: f.startswith(key), dir_names) - dir_names = sorted(dir_names) - if not dir_names: - import errno - raise FileNotFoundError( - errno.ENOENT, - "Could not find model directory under {}".format(self.model_dir)) - # Pick last directory - dir_name = os.path.join(self.model_dir, dir_names[-1]) - # Find the last checkpoint - checkpoints = next(os.walk(dir_name))[2] - checkpoints = filter(lambda f: f.startswith("mask_rcnn"), checkpoints) - checkpoints = sorted(checkpoints) - if not checkpoints: - import errno - raise FileNotFoundError( - errno.ENOENT, "Could not find weight files in {}".format(dir_name)) - checkpoint = os.path.join(dir_name, checkpoints[-1]) - return checkpoint - - def load_weights(self, filepath, by_name=False, exclude=None): - """Modified version of the corresponding Keras function with - the addition of multi-GPU support and the ability to exclude - some layers from loading. - exclude: list of layer names to exclude - """ - import h5py - # Conditional import to support versions of Keras before 2.2 - # TODO: remove in about 6 months (end of 2018) - try: - from keras.engine import saving - except ImportError: - # Keras before 2.2 used the 'topology' namespace. - from keras.engine import topology as saving - - if exclude: - by_name = True - - if h5py is None: - raise ImportError('`load_weights` requires h5py.') - f = h5py.File(filepath, mode='r') - if 'layer_names' not in f.attrs and 'model_weights' in f: - f = f['model_weights'] - - # In multi-GPU training, we wrap the model. Get layers - # of the inner model because they have the weights. - keras_model = self.keras_model - layers = keras_model.inner_model.layers if hasattr(keras_model, "inner_model")\ - else keras_model.layers - - # Exclude some layers - if exclude: - layers = filter(lambda l: l.name not in exclude, layers) - - if by_name: - saving.load_weights_from_hdf5_group_by_name(f, layers) - else: - saving.load_weights_from_hdf5_group(f, layers) - if hasattr(f, 'close'): - f.close() - - # Update the log directory - self.set_log_dir(filepath) - - def get_imagenet_weights(self): - """Downloads ImageNet trained weights from Keras. - Returns path to weights file. - """ - from keras.utils.data_utils import get_file - TF_WEIGHTS_PATH_NO_TOP = 'https://github.com/fchollet/deep-learning-models/'\ - 'releases/download/v0.2/'\ - 'resnet50_weights_tf_dim_ordering_tf_kernels_notop.h5' - weights_path = get_file('resnet50_weights_tf_dim_ordering_tf_kernels_notop.h5', - TF_WEIGHTS_PATH_NO_TOP, - cache_subdir='models', - md5_hash='a268eb855778b3df3c7506639542a6af') - return weights_path - - def compile(self, learning_rate, momentum): - """Gets the model ready for training. Adds losses, regularization, and - metrics. Then calls the Keras compile() function. - """ - # Optimizer object - optimizer = keras.optimizers.SGD( - lr=learning_rate, momentum=momentum, - clipnorm=self.config.GRADIENT_CLIP_NORM) - # Add Losses - # First, clear previously set losses to avoid duplication - self.keras_model._losses = [] - self.keras_model._per_input_losses = {} - loss_names = [ - "rpn_class_loss", "rpn_bbox_loss", - "mrcnn_class_loss", "mrcnn_bbox_loss", "mrcnn_mask_loss"] - for name in loss_names: - layer = self.keras_model.get_layer(name) - if layer.output in self.keras_model.losses: - continue - loss = ( - tf.reduce_mean(layer.output, keepdims=True) - * self.config.LOSS_WEIGHTS.get(name, 1.)) - self.keras_model.add_loss(loss) - - # Add L2 Regularization - # Skip gamma and beta weights of batch normalization layers. - reg_losses = [ - keras.regularizers.l2(self.config.WEIGHT_DECAY)(w) / tf.cast(tf.size(w), tf.float32) - for w in self.keras_model.trainable_weights - if 'gamma' not in w.name and 'beta' not in w.name] - self.keras_model.add_loss(tf.add_n(reg_losses)) - - # Compile - self.keras_model.compile( - optimizer=optimizer, - loss=[None] * len(self.keras_model.outputs)) - - # Add metrics for losses - for name in loss_names: - if name in self.keras_model.metrics_names: - continue - layer = self.keras_model.get_layer(name) - self.keras_model.metrics_names.append(name) - loss = ( - tf.reduce_mean(layer.output, keepdims=True) - * self.config.LOSS_WEIGHTS.get(name, 1.)) - self.keras_model.metrics_tensors.append(loss) - - def set_trainable(self, layer_regex, keras_model=None, indent=0, verbose=1): - """Sets model layers as trainable if their names match - the given regular expression. - """ - # Print message on the first call (but not on recursive calls) - if verbose > 0 and keras_model is None: - log("Selecting layers to train") - - keras_model = keras_model or self.keras_model - - # In multi-GPU training, we wrap the model. Get layers - # of the inner model because they have the weights. - layers = keras_model.inner_model.layers if hasattr(keras_model, "inner_model")\ - else keras_model.layers - - for layer in layers: - # Is the layer a model? - if layer.__class__.__name__ == 'Model': - print("In model: ", layer.name) - self.set_trainable( - layer_regex, keras_model=layer, indent=indent + 4) - continue - - if not layer.weights: - continue - # Is it trainable? - trainable = bool(re.fullmatch(layer_regex, layer.name)) - # Update layer. If layer is a container, update inner layer. - if layer.__class__.__name__ == 'TimeDistributed': - layer.layer.trainable = trainable - else: - layer.trainable = trainable - # Print trainable layer names - if trainable and verbose > 0: - log("{}{:20} ({})".format(" " * indent, layer.name, - layer.__class__.__name__)) - - def set_log_dir(self, model_path=None): - """Sets the model log directory and epoch counter. - - model_path: If None, or a format different from what this code uses - then set a new log directory and start epochs from 0. Otherwise, - extract the log directory and the epoch counter from the file - name. - """ - # Set date and epoch counter as if starting a new model - self.epoch = 0 - now = datetime.datetime.now() - - # If we have a model path with date and epochs use them - if model_path: - # Continue from we left of. Get epoch and date from the file name - # A sample model path might look like: - # \path\to\logs\coco20171029T2315\mask_rcnn_coco_0001.h5 (Windows) - # /path/to/logs/coco20171029T2315/mask_rcnn_coco_0001.h5 (Linux) - regex = r".*[/\\][\w-]+(\d{4})(\d{2})(\d{2})T(\d{2})(\d{2})[/\\]mask\_rcnn\_[\w-]+(\d{4})\.h5" - m = re.match(regex, model_path) - if m: - now = datetime.datetime(int(m.group(1)), int(m.group(2)), int(m.group(3)), - int(m.group(4)), int(m.group(5))) - # Epoch number in file is 1-based, and in Keras code it's 0-based. - # So, adjust for that then increment by one to start from the next epoch - self.epoch = int(m.group(6)) - 1 + 1 - print('Re-starting from epoch %d' % self.epoch) - - # Directory for training logs - self.log_dir = os.path.join(self.model_dir, "{}{:%Y%m%dT%H%M}".format( - self.config.NAME.lower(), now)) - - # Path to save after each epoch. Include placeholders that get filled by Keras. - self.checkpoint_path = os.path.join(self.log_dir, "mask_rcnn_{}_*epoch*.h5".format( - self.config.NAME.lower())) - self.checkpoint_path = self.checkpoint_path.replace( - "*epoch*", "{epoch:04d}") - - def train(self, train_dataset, val_dataset, learning_rate, epochs, layers, - augmentation=None, custom_callbacks=None, no_augmentation_sources=None): - """Train the model. - train_dataset, val_dataset: Training and validation Dataset objects. - learning_rate: The learning rate to train with - epochs: Number of training epochs. Note that previous training epochs - are considered to be done alreay, so this actually determines - the epochs to train in total rather than in this particaular - call. - layers: Allows selecting wich layers to train. It can be: - - A regular expression to match layer names to train - - One of these predefined values: - heads: The RPN, classifier and mask heads of the network - all: All the layers - 3+: Train Resnet stage 3 and up - 4+: Train Resnet stage 4 and up - 5+: Train Resnet stage 5 and up - augmentation: Optional. An imgaug (https://github.com/aleju/imgaug) - augmentation. For example, passing imgaug.augmenters.Fliplr(0.5) - flips images right/left 50% of the time. You can pass complex - augmentations as well. This augmentation applies 50% of the - time, and when it does it flips images right/left half the time - and adds a Gaussian blur with a random sigma in range 0 to 5. - - augmentation = imgaug.augmenters.Sometimes(0.5, [ - imgaug.augmenters.Fliplr(0.5), - imgaug.augmenters.GaussianBlur(sigma=(0.0, 5.0)) - ]) - custom_callbacks: Optional. Add custom callbacks to be called - with the keras fit_generator method. Must be list of type keras.callbacks. - no_augmentation_sources: Optional. List of sources to exclude for - augmentation. A source is string that identifies a dataset and is - defined in the Dataset class. - """ - assert self.mode == "training", "Create model in training mode." - - # Pre-defined layer regular expressions - layer_regex = { - # all layers but the backbone - "heads": r"(mrcnn\_.*)|(rpn\_.*)|(fpn\_.*)", - # From a specific Resnet stage and up - "3+": r"(res3.*)|(bn3.*)|(res4.*)|(bn4.*)|(res5.*)|(bn5.*)|(mrcnn\_.*)|(rpn\_.*)|(fpn\_.*)", - "4+": r"(res4.*)|(bn4.*)|(res5.*)|(bn5.*)|(mrcnn\_.*)|(rpn\_.*)|(fpn\_.*)", - "5+": r"(res5.*)|(bn5.*)|(mrcnn\_.*)|(rpn\_.*)|(fpn\_.*)", - # All layers - "all": ".*", - } - if layers in layer_regex.keys(): - layers = layer_regex[layers] - - # Data generators - train_generator = data_generator(train_dataset, self.config, shuffle=True, - augmentation=augmentation, - batch_size=self.config.BATCH_SIZE, - no_augmentation_sources=no_augmentation_sources) - val_generator = data_generator(val_dataset, self.config, shuffle=True, - batch_size=self.config.BATCH_SIZE) - - # Create log_dir if it does not exist - if not os.path.exists(self.log_dir): - os.makedirs(self.log_dir) - - # Callbacks - callbacks = [ - keras.callbacks.TensorBoard(log_dir=self.log_dir, - histogram_freq=0, write_graph=True, write_images=False), - keras.callbacks.ModelCheckpoint(self.checkpoint_path, - verbose=0, save_weights_only=True), - ] - - # Add custom callbacks to the list - if custom_callbacks: - callbacks += custom_callbacks - - # Train - log("\nStarting at epoch {}. LR={}\n".format(self.epoch, learning_rate)) - log("Checkpoint Path: {}".format(self.checkpoint_path)) - self.set_trainable(layers) - self.compile(learning_rate, self.config.LEARNING_MOMENTUM) - - # Work-around for Windows: Keras fails on Windows when using - # multiprocessing workers. See discussion here: - # https://github.com/matterport/Mask_RCNN/issues/13#issuecomment-353124009 - if os.name is 'nt': - workers = 0 - else: - workers = multiprocessing.cpu_count() - - history = self.keras_model.fit_generator( - train_generator, - initial_epoch=self.epoch, - epochs=epochs, - steps_per_epoch=self.config.STEPS_PER_EPOCH, - callbacks=callbacks, - validation_data=val_generator, - validation_steps=self.config.VALIDATION_STEPS, - max_queue_size=100, - workers=workers, - use_multiprocessing=True, - ) - self.epoch = max(self.epoch, epochs) - return history - - def mold_inputs(self, images): - """Takes a list of images and modifies them to the format expected - as an input to the neural network. - images: List of image matrices [height,width,depth]. Images can have - different sizes. - - Returns 3 Numpy matrices: - molded_images: [N, h, w, 3]. Images resized and normalized. - image_metas: [N, length of meta data]. Details about each image. - windows: [N, (y1, x1, y2, x2)]. The portion of the image that has the - original image (padding excluded). - """ - molded_images = [] - image_metas = [] - windows = [] - for image in images: - # Resize image - # TODO: move resizing to mold_image() - molded_image, window, scale, padding, crop = utils.resize_image( - image, - min_dim=self.config.IMAGE_MIN_DIM, - min_scale=self.config.IMAGE_MIN_SCALE, - max_dim=self.config.IMAGE_MAX_DIM, - mode=self.config.IMAGE_RESIZE_MODE) - molded_image = mold_image(molded_image, self.config) - # Build image_meta - image_meta = compose_image_meta( - 0, image.shape, molded_image.shape, window, scale, - np.zeros([self.config.NUM_CLASSES], dtype=np.int32)) - # Append - molded_images.append(molded_image) - windows.append(window) - image_metas.append(image_meta) - # Pack into arrays - molded_images = np.stack(molded_images) - image_metas = np.stack(image_metas) - windows = np.stack(windows) - return molded_images, image_metas, windows - - def unmold_detections(self, detections, mrcnn_mask, original_image_shape, - image_shape, window): - """Reformats the detections of one image from the format of the neural - network output to a format suitable for use in the rest of the - application. - - detections: [N, (y1, x1, y2, x2, class_id, score)] in normalized coordinates - mrcnn_mask: [N, height, width, num_classes] - original_image_shape: [H, W, C] Original image shape before resizing - image_shape: [H, W, C] Shape of the image after resizing and padding - window: [y1, x1, y2, x2] Pixel coordinates of box in the image where the real - image is excluding the padding. - - Returns: - boxes: [N, (y1, x1, y2, x2)] Bounding boxes in pixels - class_ids: [N] Integer class IDs for each bounding box - scores: [N] Float probability scores of the class_id - masks: [height, width, num_instances] Instance masks - """ - # How many detections do we have? - # Detections array is padded with zeros. Find the first class_id == 0. - zero_ix = np.where(detections[:, 4] == 0)[0] - N = zero_ix[0] if zero_ix.shape[0] > 0 else detections.shape[0] - - # Extract boxes, class_ids, scores, and class-specific masks - boxes = detections[:N, :4] - class_ids = detections[:N, 4].astype(np.int32) - scores = detections[:N, 5] - masks = mrcnn_mask[np.arange(N), :, :, class_ids] - - # Translate normalized coordinates in the resized image to pixel - # coordinates in the original image before resizing - window = utils.norm_boxes(window, image_shape[:2]) - wy1, wx1, wy2, wx2 = window - shift = np.array([wy1, wx1, wy1, wx1]) - wh = wy2 - wy1 # window height - ww = wx2 - wx1 # window width - scale = np.array([wh, ww, wh, ww]) - # Convert boxes to normalized coordinates on the window - boxes = np.divide(boxes - shift, scale) - # Convert boxes to pixel coordinates on the original image - boxes = utils.denorm_boxes(boxes, original_image_shape[:2]) - - # Filter out detections with zero area. Happens in early training when - # network weights are still random - exclude_ix = np.where( - (boxes[:, 2] - boxes[:, 0]) * (boxes[:, 3] - boxes[:, 1]) <= 0)[0] - if exclude_ix.shape[0] > 0: - boxes = np.delete(boxes, exclude_ix, axis=0) - class_ids = np.delete(class_ids, exclude_ix, axis=0) - scores = np.delete(scores, exclude_ix, axis=0) - masks = np.delete(masks, exclude_ix, axis=0) - N = class_ids.shape[0] - - # Resize masks to original image size and set boundary threshold. - full_masks = [] - for i in range(N): - # Convert neural network mask to full size mask - full_mask = utils.unmold_mask(masks[i], boxes[i], original_image_shape) - full_masks.append(full_mask) - full_masks = np.stack(full_masks, axis=-1)\ - if full_masks else np.empty(original_image_shape[:2] + (0,)) - - return boxes, class_ids, scores, full_masks - - def detect(self, images, verbose=0): - """Runs the detection pipeline. - - images: List of images, potentially of different sizes. - - Returns a list of dicts, one dict per image. The dict contains: - rois: [N, (y1, x1, y2, x2)] detection bounding boxes - class_ids: [N] int class IDs - scores: [N] float probability scores for the class IDs - masks: [H, W, N] instance binary masks - """ - assert self.mode == "inference", "Create model in inference mode." - assert len( - images) == self.config.BATCH_SIZE, "len(images) must be equal to BATCH_SIZE" - - if verbose: - log("Processing {} images".format(len(images))) - for image in images: - log("image", image) - - # Mold inputs to format expected by the neural network - molded_images, image_metas, windows = self.mold_inputs(images) - - # Validate image sizes - # All images in a batch MUST be of the same size - image_shape = molded_images[0].shape - for g in molded_images[1:]: - assert g.shape == image_shape,\ - "After resizing, all images must have the same size. Check IMAGE_RESIZE_MODE and image sizes." - - # Anchors - anchors = self.get_anchors(image_shape) - # Duplicate across the batch dimension because Keras requires it - # TODO: can this be optimized to avoid duplicating the anchors? - anchors = np.broadcast_to(anchors, (self.config.BATCH_SIZE,) + anchors.shape) - - if verbose: - log("molded_images", molded_images) - log("image_metas", image_metas) - log("anchors", anchors) - # Run object detection - detections, _, _, mrcnn_mask, _, _, _ =\ - self.keras_model.predict([molded_images, image_metas, anchors], verbose=0) - # Process detections - results = [] - for i, image in enumerate(images): - final_rois, final_class_ids, final_scores, final_masks =\ - self.unmold_detections(detections[i], mrcnn_mask[i], - image.shape, molded_images[i].shape, - windows[i]) - results.append({ - "rois": final_rois, - "class_ids": final_class_ids, - "scores": final_scores, - "masks": final_masks, - }) - return results - - def detect_molded(self, molded_images, image_metas, verbose=0): - """Runs the detection pipeline, but expect inputs that are - molded already. Used mostly for debugging and inspecting - the model. - - molded_images: List of images loaded using load_image_gt() - image_metas: image meta data, also returned by load_image_gt() - - Returns a list of dicts, one dict per image. The dict contains: - rois: [N, (y1, x1, y2, x2)] detection bounding boxes - class_ids: [N] int class IDs - scores: [N] float probability scores for the class IDs - masks: [H, W, N] instance binary masks - """ - assert self.mode == "inference", "Create model in inference mode." - assert len(molded_images) == self.config.BATCH_SIZE,\ - "Number of images must be equal to BATCH_SIZE" - - if verbose: - log("Processing {} images".format(len(molded_images))) - for image in molded_images: - log("image", image) - - # Validate image sizes - # All images in a batch MUST be of the same size - image_shape = molded_images[0].shape - for g in molded_images[1:]: - assert g.shape == image_shape, "Images must have the same size" - - # Anchors - anchors = self.get_anchors(image_shape) - # Duplicate across the batch dimension because Keras requires it - # TODO: can this be optimized to avoid duplicating the anchors? - anchors = np.broadcast_to(anchors, (self.config.BATCH_SIZE,) + anchors.shape) - - if verbose: - log("molded_images", molded_images) - log("image_metas", image_metas) - log("anchors", anchors) - # Run object detection - detections, _, _, mrcnn_mask, _, _, _ =\ - self.keras_model.predict([molded_images, image_metas, anchors], verbose=0) - # Process detections - results = [] - for i, image in enumerate(molded_images): - window = [0, 0, image.shape[0], image.shape[1]] - final_rois, final_class_ids, final_scores, final_masks =\ - self.unmold_detections(detections[i], mrcnn_mask[i], - image.shape, molded_images[i].shape, - window) - results.append({ - "rois": final_rois, - "class_ids": final_class_ids, - "scores": final_scores, - "masks": final_masks, - }) - return results - - def get_anchors(self, image_shape): - """Returns anchor pyramid for the given image size.""" - backbone_shapes = compute_backbone_shapes(self.config, image_shape) - # Cache anchors and reuse if image shape is the same - if not hasattr(self, "_anchor_cache"): - self._anchor_cache = {} - if not tuple(image_shape) in self._anchor_cache: - # Generate Anchors - a = utils.generate_pyramid_anchors( - self.config.RPN_ANCHOR_SCALES, - self.config.RPN_ANCHOR_RATIOS, - backbone_shapes, - self.config.BACKBONE_STRIDES, - self.config.RPN_ANCHOR_STRIDE) - # Keep a copy of the latest anchors in pixel coordinates because - # it's used in inspect_model notebooks. - # TODO: Remove this after the notebook are refactored to not use it - self.anchors = a - # Normalize coordinates - self._anchor_cache[tuple(image_shape)] = utils.norm_boxes(a, image_shape[:2]) - return self._anchor_cache[tuple(image_shape)] - - def ancestor(self, tensor, name, checked=None): - """Finds the ancestor of a TF tensor in the computation graph. - tensor: TensorFlow symbolic tensor. - name: Name of ancestor tensor to find - checked: For internal use. A list of tensors that were already - searched to avoid loops in traversing the graph. - """ - checked = checked if checked is not None else [] - # Put a limit on how deep we go to avoid very long loops - if len(checked) > 500: - return None - # Convert name to a regex and allow matching a number prefix - # because Keras adds them automatically - if isinstance(name, str): - name = re.compile(name.replace("/", r"(\_\d+)*/")) - - parents = tensor.op.inputs - for p in parents: - if p in checked: - continue - if bool(re.fullmatch(name, p.name)): - return p - checked.append(p) - a = self.ancestor(p, name, checked) - if a is not None: - return a - return None - - def find_trainable_layer(self, layer): - """If a layer is encapsulated by another layer, this function - digs through the encapsulation and returns the layer that holds - the weights. - """ - if layer.__class__.__name__ == 'TimeDistributed': - return self.find_trainable_layer(layer.layer) - return layer - - def get_trainable_layers(self): - """Returns a list of layers that have weights.""" - layers = [] - # Loop through all layers - for l in self.keras_model.layers: - # If layer is a wrapper, find inner trainable layer - l = self.find_trainable_layer(l) - # Include layer if it has weights - if l.get_weights(): - layers.append(l) - return layers - - def run_graph(self, images, outputs, image_metas=None): - """Runs a sub-set of the computation graph that computes the given - outputs. - - image_metas: If provided, the images are assumed to be already - molded (i.e. resized, padded, and normalized) - - outputs: List of tuples (name, tensor) to compute. The tensors are - symbolic TensorFlow tensors and the names are for easy tracking. - - Returns an ordered dict of results. Keys are the names received in the - input and values are Numpy arrays. - """ - model = self.keras_model - - # Organize desired outputs into an ordered dict - outputs = OrderedDict(outputs) - for o in outputs.values(): - assert o is not None - - # Build a Keras function to run parts of the computation graph - inputs = model.inputs - if model.uses_learning_phase and not isinstance(K.learning_phase(), int): - inputs += [K.learning_phase()] - kf = K.function(model.inputs, list(outputs.values())) - - # Prepare inputs - if image_metas is None: - molded_images, image_metas, _ = self.mold_inputs(images) - else: - molded_images = images - image_shape = molded_images[0].shape - # Anchors - anchors = self.get_anchors(image_shape) - # Duplicate across the batch dimension because Keras requires it - # TODO: can this be optimized to avoid duplicating the anchors? - anchors = np.broadcast_to(anchors, (self.config.BATCH_SIZE,) + anchors.shape) - model_in = [molded_images, image_metas, anchors] - - # Run inference - if model.uses_learning_phase and not isinstance(K.learning_phase(), int): - model_in.append(0.) - outputs_np = kf(model_in) - - # Pack the generated Numpy arrays into a a dict and log the results. - outputs_np = OrderedDict([(k, v) - for k, v in zip(outputs.keys(), outputs_np)]) - for k, v in outputs_np.items(): - log(k, v) - return outputs_np - - -############################################################ -# Data Formatting -############################################################ - -def compose_image_meta(image_id, original_image_shape, image_shape, - window, scale, active_class_ids): - """Takes attributes of an image and puts them in one 1D array. - - image_id: An int ID of the image. Useful for debugging. - original_image_shape: [H, W, C] before resizing or padding. - image_shape: [H, W, C] after resizing and padding - window: (y1, x1, y2, x2) in pixels. The area of the image where the real - image is (excluding the padding) - scale: The scaling factor applied to the original image (float32) - active_class_ids: List of class_ids available in the dataset from which - the image came. Useful if training on images from multiple datasets - where not all classes are present in all datasets. - """ - meta = np.array( - [image_id] + # size=1 - list(original_image_shape) + # size=3 - list(image_shape) + # size=3 - list(window) + # size=4 (y1, x1, y2, x2) in image cooredinates - [scale] + # size=1 - list(active_class_ids) # size=num_classes - ) - return meta - - -def parse_image_meta(meta): - """Parses an array that contains image attributes to its components. - See compose_image_meta() for more details. - - meta: [batch, meta length] where meta length depends on NUM_CLASSES - - Returns a dict of the parsed values. - """ - image_id = meta[:, 0] - original_image_shape = meta[:, 1:4] - image_shape = meta[:, 4:7] - window = meta[:, 7:11] # (y1, x1, y2, x2) window of image in in pixels - scale = meta[:, 11] - active_class_ids = meta[:, 12:] - return { - "image_id": image_id.astype(np.int32), - "original_image_shape": original_image_shape.astype(np.int32), - "image_shape": image_shape.astype(np.int32), - "window": window.astype(np.int32), - "scale": scale.astype(np.float32), - "active_class_ids": active_class_ids.astype(np.int32), - } - - -def parse_image_meta_graph(meta): - """Parses a tensor that contains image attributes to its components. - See compose_image_meta() for more details. - - meta: [batch, meta length] where meta length depends on NUM_CLASSES - - Returns a dict of the parsed tensors. - """ - image_id = meta[:, 0] - original_image_shape = meta[:, 1:4] - image_shape = meta[:, 4:7] - window = meta[:, 7:11] # (y1, x1, y2, x2) window of image in in pixels - scale = meta[:, 11] - active_class_ids = meta[:, 12:] - return { - "image_id": image_id, - "original_image_shape": original_image_shape, - "image_shape": image_shape, - "window": window, - "scale": scale, - "active_class_ids": active_class_ids, - } - - -def mold_image(images, config): - """Expects an RGB image (or array of images) and subtracts - the mean pixel and converts it to float. Expects image - colors in RGB order. - """ - return images.astype(np.float32) - config.MEAN_PIXEL - - -def unmold_image(normalized_images, config): - """Takes a image normalized with mold() and returns the original.""" - return (normalized_images + config.MEAN_PIXEL).astype(np.uint8) - - -############################################################ -# Miscellenous Graph Functions -############################################################ - -def trim_zeros_graph(boxes, name='trim_zeros'): - """Often boxes are represented with matrices of shape [N, 4] and - are padded with zeros. This removes zero boxes. - - boxes: [N, 4] matrix of boxes. - non_zeros: [N] a 1D boolean mask identifying the rows to keep - """ - non_zeros = tf.cast(tf.reduce_sum(tf.abs(boxes), axis=1), tf.bool) - boxes = tf.boolean_mask(boxes, non_zeros, name=name) - return boxes, non_zeros - - -def batch_pack_graph(x, counts, num_rows): - """Picks different number of values from each row - in x depending on the values in counts. - """ - outputs = [] - for i in range(num_rows): - outputs.append(x[i, :counts[i]]) - return tf.concat(outputs, axis=0) - - -def norm_boxes_graph(boxes, shape): - """Converts boxes from pixel coordinates to normalized coordinates. - boxes: [..., (y1, x1, y2, x2)] in pixel coordinates - shape: [..., (height, width)] in pixels - - Note: In pixel coordinates (y2, x2) is outside the box. But in normalized - coordinates it's inside the box. - - Returns: - [..., (y1, x1, y2, x2)] in normalized coordinates - """ - h, w = tf.split(tf.cast(shape, tf.float32), 2) - scale = tf.concat([h, w, h, w], axis=-1) - tf.constant(1.0) - shift = tf.constant([0., 0., 1., 1.]) - return tf.divide(boxes - shift, scale) - - -def denorm_boxes_graph(boxes, shape): - """Converts boxes from normalized coordinates to pixel coordinates. - boxes: [..., (y1, x1, y2, x2)] in normalized coordinates - shape: [..., (height, width)] in pixels - - Note: In pixel coordinates (y2, x2) is outside the box. But in normalized - coordinates it's inside the box. - - Returns: - [..., (y1, x1, y2, x2)] in pixel coordinates - """ - h, w = tf.split(tf.cast(shape, tf.float32), 2) - scale = tf.concat([h, w, h, w], axis=-1) - tf.constant(1.0) - shift = tf.constant([0., 0., 1., 1.]) - return tf.cast(tf.round(tf.multiply(boxes, scale) + shift), tf.int32) diff --git a/extractor/segmentation/Mask_RCNN/mrcnn/parallel_model.py b/extractor/segmentation/Mask_RCNN/mrcnn/parallel_model.py deleted file mode 100644 index d2bf53b..0000000 --- a/extractor/segmentation/Mask_RCNN/mrcnn/parallel_model.py +++ /dev/null @@ -1,175 +0,0 @@ -""" -Mask R-CNN -Multi-GPU Support for Keras. - -Copyright (c) 2017 Matterport, Inc. -Licensed under the MIT License (see LICENSE for details) -Written by Waleed Abdulla - -Ideas and a small code snippets from these sources: -https://github.com/fchollet/keras/issues/2436 -https://medium.com/@kuza55/transparent-multi-gpu-training-on-tensorflow-with-keras-8b0016fd9012 -https://github.com/avolkov1/keras_experiments/blob/master/keras_exp/multigpu/ -https://github.com/fchollet/keras/blob/master/keras/utils/training_utils.py -""" - -import tensorflow as tf -import keras.backend as K -import keras.layers as KL -import keras.models as KM - - -class ParallelModel(KM.Model): - """Subclasses the standard Keras Model and adds multi-GPU support. - It works by creating a copy of the model on each GPU. Then it slices - the inputs and sends a slice to each copy of the model, and then - merges the outputs together and applies the loss on the combined - outputs. - """ - - def __init__(self, keras_model, gpu_count): - """Class constructor. - keras_model: The Keras model to parallelize - gpu_count: Number of GPUs. Must be > 1 - """ - self.inner_model = keras_model - self.gpu_count = gpu_count - merged_outputs = self.make_parallel() - super(ParallelModel, self).__init__(inputs=self.inner_model.inputs, - outputs=merged_outputs) - - def __getattribute__(self, attrname): - """Redirect loading and saving methods to the inner model. That's where - the weights are stored.""" - if 'load' in attrname or 'save' in attrname: - return getattr(self.inner_model, attrname) - return super(ParallelModel, self).__getattribute__(attrname) - - def summary(self, *args, **kwargs): - """Override summary() to display summaries of both, the wrapper - and inner models.""" - super(ParallelModel, self).summary(*args, **kwargs) - self.inner_model.summary(*args, **kwargs) - - def make_parallel(self): - """Creates a new wrapper model that consists of multiple replicas of - the original model placed on different GPUs. - """ - # Slice inputs. Slice inputs on the CPU to avoid sending a copy - # of the full inputs to all GPUs. Saves on bandwidth and memory. - input_slices = {name: tf.split(x, self.gpu_count) - for name, x in zip(self.inner_model.input_names, - self.inner_model.inputs)} - - output_names = self.inner_model.output_names - outputs_all = [] - for i in range(len(self.inner_model.outputs)): - outputs_all.append([]) - - # Run the model call() on each GPU to place the ops there - for i in range(self.gpu_count): - with tf.device('/gpu:%d' % i): - with tf.name_scope('tower_%d' % i): - # Run a slice of inputs through this replica - zipped_inputs = zip(self.inner_model.input_names, - self.inner_model.inputs) - inputs = [ - KL.Lambda(lambda s: input_slices[name][i], - output_shape=lambda s: (None,) + s[1:])(tensor) - for name, tensor in zipped_inputs] - # Create the model replica and get the outputs - outputs = self.inner_model(inputs) - if not isinstance(outputs, list): - outputs = [outputs] - # Save the outputs for merging back together later - for l, o in enumerate(outputs): - outputs_all[l].append(o) - - # Merge outputs on CPU - with tf.device('/cpu:0'): - merged = [] - for outputs, name in zip(outputs_all, output_names): - # Concatenate or average outputs? - # Outputs usually have a batch dimension and we concatenate - # across it. If they don't, then the output is likely a loss - # or a metric value that gets averaged across the batch. - # Keras expects losses and metrics to be scalars. - if K.int_shape(outputs[0]) == (): - # Average - m = KL.Lambda(lambda o: tf.add_n(o) / len(outputs), name=name)(outputs) - else: - # Concatenate - m = KL.Concatenate(axis=0, name=name)(outputs) - merged.append(m) - return merged - - -if __name__ == "__main__": - # Testing code below. It creates a simple model to train on MNIST and - # tries to run it on 2 GPUs. It saves the graph so it can be viewed - # in TensorBoard. Run it as: - # - # python3 parallel_model.py - - import os - import numpy as np - import keras.optimizers - from keras.datasets import mnist - from keras.preprocessing.image import ImageDataGenerator - - GPU_COUNT = 2 - - # Root directory of the project - ROOT_DIR = os.path.abspath("../") - - # Directory to save logs and trained model - MODEL_DIR = os.path.join(ROOT_DIR, "logs") - - def build_model(x_train, num_classes): - # Reset default graph. Keras leaves old ops in the graph, - # which are ignored for execution but clutter graph - # visualization in TensorBoard. - tf.reset_default_graph() - - inputs = KL.Input(shape=x_train.shape[1:], name="input_image") - x = KL.Conv2D(32, (3, 3), activation='relu', padding="same", - name="conv1")(inputs) - x = KL.Conv2D(64, (3, 3), activation='relu', padding="same", - name="conv2")(x) - x = KL.MaxPooling2D(pool_size=(2, 2), name="pool1")(x) - x = KL.Flatten(name="flat1")(x) - x = KL.Dense(128, activation='relu', name="dense1")(x) - x = KL.Dense(num_classes, activation='softmax', name="dense2")(x) - - return KM.Model(inputs, x, "digit_classifier_model") - - # Load MNIST Data - (x_train, y_train), (x_test, y_test) = mnist.load_data() - x_train = np.expand_dims(x_train, -1).astype('float32') / 255 - x_test = np.expand_dims(x_test, -1).astype('float32') / 255 - - print('x_train shape:', x_train.shape) - print('x_test shape:', x_test.shape) - - # Build data generator and model - datagen = ImageDataGenerator() - model = build_model(x_train, 10) - - # Add multi-GPU support. - model = ParallelModel(model, GPU_COUNT) - - optimizer = keras.optimizers.SGD(lr=0.01, momentum=0.9, clipnorm=5.0) - - model.compile(loss='sparse_categorical_crossentropy', - optimizer=optimizer, metrics=['accuracy']) - - model.summary() - - # Train - model.fit_generator( - datagen.flow(x_train, y_train, batch_size=64), - steps_per_epoch=50, epochs=10, verbose=1, - validation_data=(x_test, y_test), - callbacks=[keras.callbacks.TensorBoard(log_dir=MODEL_DIR, - write_graph=True)] - ) diff --git a/extractor/segmentation/Mask_RCNN/mrcnn/utils.py b/extractor/segmentation/Mask_RCNN/mrcnn/utils.py deleted file mode 100644 index 698c84c..0000000 --- a/extractor/segmentation/Mask_RCNN/mrcnn/utils.py +++ /dev/null @@ -1,910 +0,0 @@ -""" -Mask R-CNN -Common utility functions and classes. - -Copyright (c) 2017 Matterport, Inc. -Licensed under the MIT License (see LICENSE for details) -Written by Waleed Abdulla -""" - -import sys -import os -import logging -import math -import random -import numpy as np -import tensorflow as tf -import scipy -import skimage.color -import skimage.io -import skimage.transform -import urllib.request -import shutil -import warnings -from distutils.version import LooseVersion - -# URL from which to download the latest COCO trained weights -COCO_MODEL_URL = "https://github.com/matterport/Mask_RCNN/releases/download/v2.0/mask_rcnn_coco.h5" - - -############################################################ -# Bounding Boxes -############################################################ - -def extract_bboxes(mask): - """Compute bounding boxes from masks. - mask: [height, width, num_instances]. Mask pixels are either 1 or 0. - - Returns: bbox array [num_instances, (y1, x1, y2, x2)]. - """ - boxes = np.zeros([mask.shape[-1], 4], dtype=np.int32) - for i in range(mask.shape[-1]): - m = mask[:, :, i] - # Bounding box. - horizontal_indicies = np.where(np.any(m, axis=0))[0] - vertical_indicies = np.where(np.any(m, axis=1))[0] - if horizontal_indicies.shape[0]: - x1, x2 = horizontal_indicies[[0, -1]] - y1, y2 = vertical_indicies[[0, -1]] - # x2 and y2 should not be part of the box. Increment by 1. - x2 += 1 - y2 += 1 - else: - # No mask for this instance. Might happen due to - # resizing or cropping. Set bbox to zeros - x1, x2, y1, y2 = 0, 0, 0, 0 - boxes[i] = np.array([y1, x1, y2, x2]) - return boxes.astype(np.int32) - - -def compute_iou(box, boxes, box_area, boxes_area): - """Calculates IoU of the given box with the array of the given boxes. - box: 1D vector [y1, x1, y2, x2] - boxes: [boxes_count, (y1, x1, y2, x2)] - box_area: float. the area of 'box' - boxes_area: array of length boxes_count. - - Note: the areas are passed in rather than calculated here for - efficiency. Calculate once in the caller to avoid duplicate work. - """ - # Calculate intersection areas - y1 = np.maximum(box[0], boxes[:, 0]) - y2 = np.minimum(box[2], boxes[:, 2]) - x1 = np.maximum(box[1], boxes[:, 1]) - x2 = np.minimum(box[3], boxes[:, 3]) - intersection = np.maximum(x2 - x1, 0) * np.maximum(y2 - y1, 0) - union = box_area + boxes_area[:] - intersection[:] - iou = intersection / union - return iou - - -def compute_overlaps(boxes1, boxes2): - """Computes IoU overlaps between two sets of boxes. - boxes1, boxes2: [N, (y1, x1, y2, x2)]. - - For better performance, pass the largest set first and the smaller second. - """ - # Areas of anchors and GT boxes - area1 = (boxes1[:, 2] - boxes1[:, 0]) * (boxes1[:, 3] - boxes1[:, 1]) - area2 = (boxes2[:, 2] - boxes2[:, 0]) * (boxes2[:, 3] - boxes2[:, 1]) - - # Compute overlaps to generate matrix [boxes1 count, boxes2 count] - # Each cell contains the IoU value. - overlaps = np.zeros((boxes1.shape[0], boxes2.shape[0])) - for i in range(overlaps.shape[1]): - box2 = boxes2[i] - overlaps[:, i] = compute_iou(box2, boxes1, area2[i], area1) - return overlaps - - -def compute_overlaps_masks(masks1, masks2): - """Computes IoU overlaps between two sets of masks. - masks1, masks2: [Height, Width, instances] - """ - - # If either set of masks is empty return empty result - if masks1.shape[-1] == 0 or masks2.shape[-1] == 0: - return np.zeros((masks1.shape[-1], masks2.shape[-1])) - # flatten masks and compute their areas - masks1 = np.reshape(masks1 > .5, (-1, masks1.shape[-1])).astype(np.float32) - masks2 = np.reshape(masks2 > .5, (-1, masks2.shape[-1])).astype(np.float32) - area1 = np.sum(masks1, axis=0) - area2 = np.sum(masks2, axis=0) - - # intersections and union - intersections = np.dot(masks1.T, masks2) - union = area1[:, None] + area2[None, :] - intersections - overlaps = intersections / union - - return overlaps - - -def non_max_suppression(boxes, scores, threshold): - """Performs non-maximum suppression and returns indices of kept boxes. - boxes: [N, (y1, x1, y2, x2)]. Notice that (y2, x2) lays outside the box. - scores: 1-D array of box scores. - threshold: Float. IoU threshold to use for filtering. - """ - assert boxes.shape[0] > 0 - if boxes.dtype.kind != "f": - boxes = boxes.astype(np.float32) - - # Compute box areas - y1 = boxes[:, 0] - x1 = boxes[:, 1] - y2 = boxes[:, 2] - x2 = boxes[:, 3] - area = (y2 - y1) * (x2 - x1) - - # Get indicies of boxes sorted by scores (highest first) - ixs = scores.argsort()[::-1] - - pick = [] - while len(ixs) > 0: - # Pick top box and add its index to the list - i = ixs[0] - pick.append(i) - # Compute IoU of the picked box with the rest - iou = compute_iou(boxes[i], boxes[ixs[1:]], area[i], area[ixs[1:]]) - # Identify boxes with IoU over the threshold. This - # returns indices into ixs[1:], so add 1 to get - # indices into ixs. - remove_ixs = np.where(iou > threshold)[0] + 1 - # Remove indices of the picked and overlapped boxes. - ixs = np.delete(ixs, remove_ixs) - ixs = np.delete(ixs, 0) - return np.array(pick, dtype=np.int32) - - -def apply_box_deltas(boxes, deltas): - """Applies the given deltas to the given boxes. - boxes: [N, (y1, x1, y2, x2)]. Note that (y2, x2) is outside the box. - deltas: [N, (dy, dx, log(dh), log(dw))] - """ - boxes = boxes.astype(np.float32) - # Convert to y, x, h, w - height = boxes[:, 2] - boxes[:, 0] - width = boxes[:, 3] - boxes[:, 1] - center_y = boxes[:, 0] + 0.5 * height - center_x = boxes[:, 1] + 0.5 * width - # Apply deltas - center_y += deltas[:, 0] * height - center_x += deltas[:, 1] * width - height *= np.exp(deltas[:, 2]) - width *= np.exp(deltas[:, 3]) - # Convert back to y1, x1, y2, x2 - y1 = center_y - 0.5 * height - x1 = center_x - 0.5 * width - y2 = y1 + height - x2 = x1 + width - return np.stack([y1, x1, y2, x2], axis=1) - - -def box_refinement_graph(box, gt_box): - """Compute refinement needed to transform box to gt_box. - box and gt_box are [N, (y1, x1, y2, x2)] - """ - box = tf.cast(box, tf.float32) - gt_box = tf.cast(gt_box, tf.float32) - - height = box[:, 2] - box[:, 0] - width = box[:, 3] - box[:, 1] - center_y = box[:, 0] + 0.5 * height - center_x = box[:, 1] + 0.5 * width - - gt_height = gt_box[:, 2] - gt_box[:, 0] - gt_width = gt_box[:, 3] - gt_box[:, 1] - gt_center_y = gt_box[:, 0] + 0.5 * gt_height - gt_center_x = gt_box[:, 1] + 0.5 * gt_width - - dy = (gt_center_y - center_y) / height - dx = (gt_center_x - center_x) / width - dh = tf.log(gt_height / height) - dw = tf.log(gt_width / width) - - result = tf.stack([dy, dx, dh, dw], axis=1) - return result - - -def box_refinement(box, gt_box): - """Compute refinement needed to transform box to gt_box. - box and gt_box are [N, (y1, x1, y2, x2)]. (y2, x2) is - assumed to be outside the box. - """ - box = box.astype(np.float32) - gt_box = gt_box.astype(np.float32) - - height = box[:, 2] - box[:, 0] - width = box[:, 3] - box[:, 1] - center_y = box[:, 0] + 0.5 * height - center_x = box[:, 1] + 0.5 * width - - gt_height = gt_box[:, 2] - gt_box[:, 0] - gt_width = gt_box[:, 3] - gt_box[:, 1] - gt_center_y = gt_box[:, 0] + 0.5 * gt_height - gt_center_x = gt_box[:, 1] + 0.5 * gt_width - - dy = (gt_center_y - center_y) / height - dx = (gt_center_x - center_x) / width - dh = np.log(gt_height / height) - dw = np.log(gt_width / width) - - return np.stack([dy, dx, dh, dw], axis=1) - - -############################################################ -# Dataset -############################################################ - -class Dataset(object): - """The base class for dataset classes. - To use it, create a new class that adds functions specific to the dataset - you want to use. For example: - - class CatsAndDogsDataset(Dataset): - def load_cats_and_dogs(self): - ... - def load_mask(self, image_id): - ... - def image_reference(self, image_id): - ... - - See COCODataset and ShapesDataset as examples. - """ - - def __init__(self, class_map=None): - self._image_ids = [] - self.image_info = [] - # Background is always the first class - self.class_info = [{"source": "", "id": 0, "name": "BG"}] - self.source_class_ids = {} - - def add_class(self, source, class_id, class_name): - assert "." not in source, "Source name cannot contain a dot" - # Does the class exist already? - for info in self.class_info: - if info['source'] == source and info["id"] == class_id: - # source.class_id combination already available, skip - return - # Add the class - self.class_info.append({ - "source": source, - "id": class_id, - "name": class_name, - }) - - def add_image(self, source, image_id, path, **kwargs): - image_info = { - "id": image_id, - "source": source, - "path": path, - } - image_info.update(kwargs) - self.image_info.append(image_info) - - def image_reference(self, image_id): - """Return a link to the image in its source Website or details about - the image that help looking it up or debugging it. - - Override for your dataset, but pass to this function - if you encounter images not in your dataset. - """ - return "" - - def prepare(self, class_map=None): - """Prepares the Dataset class for use. - - TODO: class map is not supported yet. When done, it should handle mapping - classes from different datasets to the same class ID. - """ - - def clean_name(name): - """Returns a shorter version of object names for cleaner display.""" - return ",".join(name.split(",")[:1]) - - # Build (or rebuild) everything else from the info dicts. - self.num_classes = len(self.class_info) - self.class_ids = np.arange(self.num_classes) - self.class_names = [clean_name(c["name"]) for c in self.class_info] - self.num_images = len(self.image_info) - self._image_ids = np.arange(self.num_images) - - # Mapping from source class and image IDs to internal IDs - self.class_from_source_map = {"{}.{}".format(info['source'], info['id']): id - for info, id in zip(self.class_info, self.class_ids)} - self.image_from_source_map = {"{}.{}".format(info['source'], info['id']): id - for info, id in zip(self.image_info, self.image_ids)} - - # Map sources to class_ids they support - self.sources = list(set([i['source'] for i in self.class_info])) - self.source_class_ids = {} - # Loop over datasets - for source in self.sources: - self.source_class_ids[source] = [] - # Find classes that belong to this dataset - for i, info in enumerate(self.class_info): - # Include BG class in all datasets - if i == 0 or source == info['source']: - self.source_class_ids[source].append(i) - - def map_source_class_id(self, source_class_id): - """Takes a source class ID and returns the int class ID assigned to it. - - For example: - dataset.map_source_class_id("coco.12") -> 23 - """ - return self.class_from_source_map[source_class_id] - - def get_source_class_id(self, class_id, source): - """Map an internal class ID to the corresponding class ID in the source dataset.""" - info = self.class_info[class_id] - assert info['source'] == source - return info['id'] - - @property - def image_ids(self): - return self._image_ids - - def source_image_link(self, image_id): - """Returns the path or URL to the image. - Override this to return a URL to the image if it's available online for easy - debugging. - """ - return self.image_info[image_id]["path"] - - def load_image(self, image_id): - """Load the specified image and return a [H,W,3] Numpy array. - """ - # Load image - image = skimage.io.imread(self.image_info[image_id]['path']) - # If grayscale. Convert to RGB for consistency. - if image.ndim != 3: - image = skimage.color.gray2rgb(image) - # If has an alpha channel, remove it for consistency - if image.shape[-1] == 4: - image = image[..., :3] - return image - - def load_mask(self, image_id): - """Load instance masks for the given image. - - Different datasets use different ways to store masks. Override this - method to load instance masks and return them in the form of am - array of binary masks of shape [height, width, instances]. - - Returns: - masks: A bool array of shape [height, width, instance count] with - a binary mask per instance. - class_ids: a 1D array of class IDs of the instance masks. - """ - # Override this function to load a mask from your dataset. - # Otherwise, it returns an empty mask. - logging.warning("You are using the default load_mask(), maybe you need to define your own one.") - mask = np.empty([0, 0, 0]) - class_ids = np.empty([0], np.int32) - return mask, class_ids - - -def resize_image(image, min_dim=None, max_dim=None, min_scale=None, mode="square"): - """Resizes an image keeping the aspect ratio unchanged. - - min_dim: if provided, resizes the image such that it's smaller - dimension == min_dim - max_dim: if provided, ensures that the image longest side doesn't - exceed this value. - min_scale: if provided, ensure that the image is scaled up by at least - this percent even if min_dim doesn't require it. - mode: Resizing mode. - none: No resizing. Return the image unchanged. - square: Resize and pad with zeros to get a square image - of size [max_dim, max_dim]. - pad64: Pads width and height with zeros to make them multiples of 64. - If min_dim or min_scale are provided, it scales the image up - before padding. max_dim is ignored in this mode. - The multiple of 64 is needed to ensure smooth scaling of feature - maps up and down the 6 levels of the FPN pyramid (2**6=64). - crop: Picks random crops from the image. First, scales the image based - on min_dim and min_scale, then picks a random crop of - size min_dim x min_dim. Can be used in training only. - max_dim is not used in this mode. - - Returns: - image: the resized image - window: (y1, x1, y2, x2). If max_dim is provided, padding might - be inserted in the returned image. If so, this window is the - coordinates of the image part of the full image (excluding - the padding). The x2, y2 pixels are not included. - scale: The scale factor used to resize the image - padding: Padding added to the image [(top, bottom), (left, right), (0, 0)] - """ - # Keep track of image dtype and return results in the same dtype - image_dtype = image.dtype - # Default window (y1, x1, y2, x2) and default scale == 1. - h, w = image.shape[:2] - window = (0, 0, h, w) - scale = 1 - padding = [(0, 0), (0, 0), (0, 0)] - crop = None - - if mode == "none": - return image, window, scale, padding, crop - - # Scale? - if min_dim: - # Scale up but not down - scale = max(1, min_dim / min(h, w)) - if min_scale and scale < min_scale: - scale = min_scale - - # Does it exceed max dim? - if max_dim and mode == "square": - image_max = max(h, w) - if round(image_max * scale) > max_dim: - scale = max_dim / image_max - - # Resize image using bilinear interpolation - if scale != 1: - image = resize(image, (round(h * scale), round(w * scale)), - preserve_range=True) - - # Need padding or cropping? - if mode == "square": - # Get new height and width - h, w = image.shape[:2] - top_pad = (max_dim - h) // 2 - bottom_pad = max_dim - h - top_pad - left_pad = (max_dim - w) // 2 - right_pad = max_dim - w - left_pad - padding = [(top_pad, bottom_pad), (left_pad, right_pad), (0, 0)] - image = np.pad(image, padding, mode='constant', constant_values=0) - window = (top_pad, left_pad, h + top_pad, w + left_pad) - elif mode == "pad64": - h, w = image.shape[:2] - # Both sides must be divisible by 64 - assert min_dim % 64 == 0, "Minimum dimension must be a multiple of 64" - # Height - if h % 64 > 0: - max_h = h - (h % 64) + 64 - top_pad = (max_h - h) // 2 - bottom_pad = max_h - h - top_pad - else: - top_pad = bottom_pad = 0 - # Width - if w % 64 > 0: - max_w = w - (w % 64) + 64 - left_pad = (max_w - w) // 2 - right_pad = max_w - w - left_pad - else: - left_pad = right_pad = 0 - padding = [(top_pad, bottom_pad), (left_pad, right_pad), (0, 0)] - image = np.pad(image, padding, mode='constant', constant_values=0) - window = (top_pad, left_pad, h + top_pad, w + left_pad) - elif mode == "crop": - # Pick a random crop - h, w = image.shape[:2] - y = random.randint(0, (h - min_dim)) - x = random.randint(0, (w - min_dim)) - crop = (y, x, min_dim, min_dim) - image = image[y:y + min_dim, x:x + min_dim] - window = (0, 0, min_dim, min_dim) - else: - raise Exception("Mode {} not supported".format(mode)) - return image.astype(image_dtype), window, scale, padding, crop - - -def resize_mask(mask, scale, padding, crop=None): - """Resizes a mask using the given scale and padding. - Typically, you get the scale and padding from resize_image() to - ensure both, the image and the mask, are resized consistently. - - scale: mask scaling factor - padding: Padding to add to the mask in the form - [(top, bottom), (left, right), (0, 0)] - """ - # Suppress warning from scipy 0.13.0, the output shape of zoom() is - # calculated with round() instead of int() - with warnings.catch_warnings(): - warnings.simplefilter("ignore") - mask = scipy.ndimage.zoom(mask, zoom=[scale, scale, 1], order=0) - if crop is not None: - y, x, h, w = crop - mask = mask[y:y + h, x:x + w] - else: - mask = np.pad(mask, padding, mode='constant', constant_values=0) - return mask - - -def minimize_mask(bbox, mask, mini_shape): - """Resize masks to a smaller version to reduce memory load. - Mini-masks can be resized back to image scale using expand_masks() - - See inspect_data.ipynb notebook for more details. - """ - mini_mask = np.zeros(mini_shape + (mask.shape[-1],), dtype=bool) - for i in range(mask.shape[-1]): - # Pick slice and cast to bool in case load_mask() returned wrong dtype - m = mask[:, :, i].astype(bool) - y1, x1, y2, x2 = bbox[i][:4] - m = m[y1:y2, x1:x2] - if m.size == 0: - raise Exception("Invalid bounding box with area of zero") - # Resize with bilinear interpolation - m = resize(m, mini_shape) - mini_mask[:, :, i] = np.around(m).astype(np.bool) - return mini_mask - - -def expand_mask(bbox, mini_mask, image_shape): - """Resizes mini masks back to image size. Reverses the change - of minimize_mask(). - - See inspect_data.ipynb notebook for more details. - """ - mask = np.zeros(image_shape[:2] + (mini_mask.shape[-1],), dtype=bool) - for i in range(mask.shape[-1]): - m = mini_mask[:, :, i] - y1, x1, y2, x2 = bbox[i][:4] - h = y2 - y1 - w = x2 - x1 - # Resize with bilinear interpolation - m = resize(m, (h, w)) - mask[y1:y2, x1:x2, i] = np.around(m).astype(np.bool) - return mask - - -# TODO: Build and use this function to reduce code duplication -def mold_mask(mask, config): - pass - - -def unmold_mask(mask, bbox, image_shape): - """Converts a mask generated by the neural network to a format similar - to its original shape. - mask: [height, width] of type float. A small, typically 28x28 mask. - bbox: [y1, x1, y2, x2]. The box to fit the mask in. - - Returns a binary mask with the same size as the original image. - """ - threshold = 0.5 - y1, x1, y2, x2 = bbox - mask = resize(mask, (y2 - y1, x2 - x1)) - mask = np.where(mask >= threshold, 1, 0).astype(np.bool) - - # Put the mask in the right location. - full_mask = np.zeros(image_shape[:2], dtype=np.bool) - full_mask[y1:y2, x1:x2] = mask - return full_mask - - -############################################################ -# Anchors -############################################################ - -def generate_anchors(scales, ratios, shape, feature_stride, anchor_stride): - """ - scales: 1D array of anchor sizes in pixels. Example: [32, 64, 128] - ratios: 1D array of anchor ratios of width/height. Example: [0.5, 1, 2] - shape: [height, width] spatial shape of the feature map over which - to generate anchors. - feature_stride: Stride of the feature map relative to the image in pixels. - anchor_stride: Stride of anchors on the feature map. For example, if the - value is 2 then generate anchors for every other feature map pixel. - """ - # Get all combinations of scales and ratios - scales, ratios = np.meshgrid(np.array(scales), np.array(ratios)) - scales = scales.flatten() - ratios = ratios.flatten() - - # Enumerate heights and widths from scales and ratios - heights = scales / np.sqrt(ratios) - widths = scales * np.sqrt(ratios) - - # Enumerate shifts in feature space - shifts_y = np.arange(0, shape[0], anchor_stride) * feature_stride - shifts_x = np.arange(0, shape[1], anchor_stride) * feature_stride - shifts_x, shifts_y = np.meshgrid(shifts_x, shifts_y) - - # Enumerate combinations of shifts, widths, and heights - box_widths, box_centers_x = np.meshgrid(widths, shifts_x) - box_heights, box_centers_y = np.meshgrid(heights, shifts_y) - - # Reshape to get a list of (y, x) and a list of (h, w) - box_centers = np.stack( - [box_centers_y, box_centers_x], axis=2).reshape([-1, 2]) - box_sizes = np.stack([box_heights, box_widths], axis=2).reshape([-1, 2]) - - # Convert to corner coordinates (y1, x1, y2, x2) - boxes = np.concatenate([box_centers - 0.5 * box_sizes, - box_centers + 0.5 * box_sizes], axis=1) - return boxes - - -def generate_pyramid_anchors(scales, ratios, feature_shapes, feature_strides, - anchor_stride): - """Generate anchors at different levels of a feature pyramid. Each scale - is associated with a level of the pyramid, but each ratio is used in - all levels of the pyramid. - - Returns: - anchors: [N, (y1, x1, y2, x2)]. All generated anchors in one array. Sorted - with the same order of the given scales. So, anchors of scale[0] come - first, then anchors of scale[1], and so on. - """ - # Anchors - # [anchor_count, (y1, x1, y2, x2)] - anchors = [] - for i in range(len(scales)): - anchors.append(generate_anchors(scales[i], ratios, feature_shapes[i], - feature_strides[i], anchor_stride)) - return np.concatenate(anchors, axis=0) - - -############################################################ -# Miscellaneous -############################################################ - -def trim_zeros(x): - """It's common to have tensors larger than the available data and - pad with zeros. This function removes rows that are all zeros. - - x: [rows, columns]. - """ - assert len(x.shape) == 2 - return x[~np.all(x == 0, axis=1)] - - -def compute_matches(gt_boxes, gt_class_ids, gt_masks, - pred_boxes, pred_class_ids, pred_scores, pred_masks, - iou_threshold=0.5, score_threshold=0.0): - """Finds matches between prediction and ground truth instances. - - Returns: - gt_match: 1-D array. For each GT box it has the index of the matched - predicted box. - pred_match: 1-D array. For each predicted box, it has the index of - the matched ground truth box. - overlaps: [pred_boxes, gt_boxes] IoU overlaps. - """ - # Trim zero padding - # TODO: cleaner to do zero unpadding upstream - gt_boxes = trim_zeros(gt_boxes) - gt_masks = gt_masks[..., :gt_boxes.shape[0]] - pred_boxes = trim_zeros(pred_boxes) - pred_scores = pred_scores[:pred_boxes.shape[0]] - # Sort predictions by score from high to low - indices = np.argsort(pred_scores)[::-1] - pred_boxes = pred_boxes[indices] - pred_class_ids = pred_class_ids[indices] - pred_scores = pred_scores[indices] - pred_masks = pred_masks[..., indices] - - # Compute IoU overlaps [pred_masks, gt_masks] - overlaps = compute_overlaps_masks(pred_masks, gt_masks) - - # Loop through predictions and find matching ground truth boxes - match_count = 0 - pred_match = -1 * np.ones([pred_boxes.shape[0]]) - gt_match = -1 * np.ones([gt_boxes.shape[0]]) - for i in range(len(pred_boxes)): - # Find best matching ground truth box - # 1. Sort matches by score - sorted_ixs = np.argsort(overlaps[i])[::-1] - # 2. Remove low scores - low_score_idx = np.where(overlaps[i, sorted_ixs] < score_threshold)[0] - if low_score_idx.size > 0: - sorted_ixs = sorted_ixs[:low_score_idx[0]] - # 3. Find the match - for j in sorted_ixs: - # If ground truth box is already matched, go to next one - if gt_match[j] > -1: - continue - # If we reach IoU smaller than the threshold, end the loop - iou = overlaps[i, j] - if iou < iou_threshold: - break - # Do we have a match? - if pred_class_ids[i] == gt_class_ids[j]: - match_count += 1 - gt_match[j] = i - pred_match[i] = j - break - - return gt_match, pred_match, overlaps - - -def compute_ap(gt_boxes, gt_class_ids, gt_masks, - pred_boxes, pred_class_ids, pred_scores, pred_masks, - iou_threshold=0.5): - """Compute Average Precision at a set IoU threshold (default 0.5). - Returns: - mAP: Mean Average Precision - precisions: List of precisions at different class score thresholds. - recalls: List of recall values at different class score thresholds. - f1scores: List of F1 scores at different class score thresholds. - overlaps: [pred_boxes, gt_boxes] IoU overlaps. - """ - # Get matches and overlaps - gt_match, pred_match, overlaps = compute_matches( - gt_boxes, gt_class_ids, gt_masks, - pred_boxes, pred_class_ids, pred_scores, pred_masks, - iou_threshold) - - # Compute precision, recall and f1 score at each prediction box step - eps = np.finfo(np.float32).eps - precisions = np.cumsum(pred_match > -1) / (np.arange(len(pred_match)) + 1) - recalls = np.cumsum(pred_match > -1).astype(np.float32) / (len(gt_match) + eps) - f1scores = 2*(np.array(recalls)*np.array(precisions))/(np.array(recalls) + np.array(precisions) + eps) - - # Pad with start and end values to simplify the math - precisions = np.concatenate([[0], precisions, [0]]) - recalls = np.concatenate([[0], recalls, [1]]) - - # Ensure precision values decrease but don't increase. This way, the - # precision value at each recall threshold is the maximum it can be - # for all following recall thresholds, as specified by the VOC paper. - for i in range(len(precisions) - 2, -1, -1): - precisions[i] = np.maximum(precisions[i], precisions[i + 1]) - - # Compute mean AP over recall range - indices = np.where(recalls[:-1] != recalls[1:])[0] + 1 - mAP = np.sum((recalls[indices] - recalls[indices - 1]) * - precisions[indices]) - - return mAP, precisions, recalls, f1scores, overlaps - - -def compute_ap_range(gt_box, gt_class_id, gt_mask, - pred_box, pred_class_id, pred_score, pred_mask, - iou_thresholds=None, verbose=1): - """Compute AP over a range or IoU thresholds. Default range is 0.5-0.95.""" - # Default is 0.5 to 0.95 with increments of 0.05 - iou_thresholds = iou_thresholds or np.arange(0.5, 1.0, 0.05) - - # Compute AP over range of IoU thresholds - AP = [] - for iou_threshold in iou_thresholds: - ap, precisions, recalls, overlaps =\ - compute_ap(gt_box, gt_class_id, gt_mask, - pred_box, pred_class_id, pred_score, pred_mask, - iou_threshold=iou_threshold) - if verbose: - print("AP @{:.2f}:\t {:.3f}".format(iou_threshold, ap)) - AP.append(ap) - AP = np.array(AP).mean() - if verbose: - print("AP @{:.2f}-{:.2f}:\t {:.3f}".format( - iou_thresholds[0], iou_thresholds[-1], AP)) - return AP - - -def compute_recall(pred_boxes, gt_boxes, iou): - """Compute the recall at the given IoU threshold. It's an indication - of how many GT boxes were found by the given prediction boxes. - - pred_boxes: [N, (y1, x1, y2, x2)] in image coordinates - gt_boxes: [N, (y1, x1, y2, x2)] in image coordinates - """ - # Measure overlaps - overlaps = compute_overlaps(pred_boxes, gt_boxes) - iou_max = np.max(overlaps, axis=1) - iou_argmax = np.argmax(overlaps, axis=1) - positive_ids = np.where(iou_max >= iou)[0] - matched_gt_boxes = iou_argmax[positive_ids] - - recall = len(set(matched_gt_boxes)) / gt_boxes.shape[0] - return recall, positive_ids - - -# ## Batch Slicing -# Some custom layers support a batch size of 1 only, and require a lot of work -# to support batches greater than 1. This function slices an input tensor -# across the batch dimension and feeds batches of size 1. Effectively, -# an easy way to support batches > 1 quickly with little code modification. -# In the long run, it's more efficient to modify the code to support large -# batches and getting rid of this function. Consider this a temporary solution -def batch_slice(inputs, graph_fn, batch_size, names=None): - """Splits inputs into slices and feeds each slice to a copy of the given - computation graph and then combines the results. It allows you to run a - graph on a batch of inputs even if the graph is written to support one - instance only. - - inputs: list of tensors. All must have the same first dimension length - graph_fn: A function that returns a TF tensor that's part of a graph. - batch_size: number of slices to divide the data into. - names: If provided, assigns names to the resulting tensors. - """ - if not isinstance(inputs, list): - inputs = [inputs] - - outputs = [] - for i in range(batch_size): - inputs_slice = [x[i] for x in inputs] - output_slice = graph_fn(*inputs_slice) - if not isinstance(output_slice, (tuple, list)): - output_slice = [output_slice] - outputs.append(output_slice) - # Change outputs from a list of slices where each is - # a list of outputs to a list of outputs and each has - # a list of slices - outputs = list(zip(*outputs)) - - if names is None: - names = [None] * len(outputs) - - result = [tf.stack(o, axis=0, name=n) - for o, n in zip(outputs, names)] - if len(result) == 1: - result = result[0] - - return result - - -def download_trained_weights(coco_model_path, verbose=1): - """Download COCO trained weights from Releases. - - coco_model_path: local path of COCO trained weights - """ - if verbose > 0: - print("Downloading pretrained model to " + coco_model_path + " ...") - with urllib.request.urlopen(COCO_MODEL_URL) as resp, open(coco_model_path, 'wb') as out: - shutil.copyfileobj(resp, out) - if verbose > 0: - print("... done downloading pretrained model!") - - -def norm_boxes(boxes, shape): - """Converts boxes from pixel coordinates to normalized coordinates. - boxes: [N, (y1, x1, y2, x2)] in pixel coordinates - shape: [..., (height, width)] in pixels - - Note: In pixel coordinates (y2, x2) is outside the box. But in normalized - coordinates it's inside the box. - - Returns: - [N, (y1, x1, y2, x2)] in normalized coordinates - """ - h, w = shape - scale = np.array([h - 1, w - 1, h - 1, w - 1]) - shift = np.array([0, 0, 1, 1]) - return np.divide((boxes - shift), scale).astype(np.float32) - - -def denorm_boxes(boxes, shape): - """Converts boxes from normalized coordinates to pixel coordinates. - boxes: [N, (y1, x1, y2, x2)] in normalized coordinates - shape: [..., (height, width)] in pixels - - Note: In pixel coordinates (y2, x2) is outside the box. But in normalized - coordinates it's inside the box. - - Returns: - [N, (y1, x1, y2, x2)] in pixel coordinates - """ - h, w = shape - scale = np.array([h - 1, w - 1, h - 1, w - 1]) - shift = np.array([0, 0, 1, 1]) - return np.around(np.multiply(boxes, scale) + shift).astype(np.int32) - - -def resize(image, output_shape, order=1, mode='constant', cval=0, clip=True, - preserve_range=False, anti_aliasing=False, anti_aliasing_sigma=None): - """A wrapper for Scikit-Image resize(). - - Scikit-Image generates warnings on every call to resize() if it doesn't - receive the right parameters. The right parameters depend on the version - of skimage. This solves the problem by using different parameters per - version. And it provides a central place to control resizing defaults. - """ - if LooseVersion(skimage.__version__) >= LooseVersion("0.14"): - # New in 0.14: anti_aliasing. Default it to False for backward - # compatibility with skimage 0.13. - return skimage.transform.resize( - image, output_shape, - order=order, mode=mode, cval=cval, clip=clip, - preserve_range=preserve_range, anti_aliasing=anti_aliasing, - anti_aliasing_sigma=anti_aliasing_sigma) - else: - return skimage.transform.resize( - image, output_shape, - order=order, mode=mode, cval=cval, clip=clip, - preserve_range=preserve_range) diff --git a/extractor/segmentation/Mask_RCNN/mrcnn/visualize.py b/extractor/segmentation/Mask_RCNN/mrcnn/visualize.py deleted file mode 100644 index d1eead8..0000000 --- a/extractor/segmentation/Mask_RCNN/mrcnn/visualize.py +++ /dev/null @@ -1,500 +0,0 @@ -""" -Mask R-CNN -Display and Visualization Functions. - -Copyright (c) 2017 Matterport, Inc. -Licensed under the MIT License (see LICENSE for details) -Written by Waleed Abdulla -""" - -import os -import sys -import random -import itertools -import colorsys - -import numpy as np -from skimage.measure import find_contours -import matplotlib.pyplot as plt -from matplotlib import patches, lines -from matplotlib.patches import Polygon -import IPython.display - -# Root directory of the project -ROOT_DIR = os.path.abspath("../") - -# Import Mask RCNN -sys.path.append(ROOT_DIR) # To find local version of the library -from mrcnn import utils - - -############################################################ -# Visualization -############################################################ - -def display_images(images, titles=None, cols=4, cmap=None, norm=None, - interpolation=None): - """Display the given set of images, optionally with titles. - images: list or array of image tensors in HWC format. - titles: optional. A list of titles to display with each image. - cols: number of images per row - cmap: Optional. Color map to use. For example, "Blues". - norm: Optional. A Normalize instance to map values to colors. - interpolation: Optional. Image interpolation to use for display. - """ - titles = titles if titles is not None else [""] * len(images) - rows = len(images) // cols + 1 - plt.figure(figsize=(14, 14 * rows // cols)) - i = 1 - for image, title in zip(images, titles): - plt.subplot(rows, cols, i) - plt.title(title, fontsize=9) - plt.axis('off') - plt.imshow(image.astype(np.uint8), cmap=cmap, - norm=norm, interpolation=interpolation) - i += 1 - plt.show() - - -def random_colors(N, bright=True): - """ - Generate random colors. - To get visually distinct colors, generate them in HSV space then - convert to RGB. - """ - brightness = 1.0 if bright else 0.7 - hsv = [(i / N, 1, brightness) for i in range(N)] - colors = list(map(lambda c: colorsys.hsv_to_rgb(*c), hsv)) - random.shuffle(colors) - return colors - - -def apply_mask(image, mask, color, alpha=0.5): - """Apply the given mask to the image. - """ - for c in range(3): - image[:, :, c] = np.where(mask == 1, - image[:, :, c] * - (1 - alpha) + alpha * color[c] * 255, - image[:, :, c]) - return image - - -def display_instances(image, boxes, masks, class_ids, class_names, - scores=None, title="", - figsize=(16, 16), ax=None, - show_mask=True, show_bbox=True, - colors=None, captions=None): - """ - boxes: [num_instance, (y1, x1, y2, x2, class_id)] in image coordinates. - masks: [height, width, num_instances] - class_ids: [num_instances] - class_names: list of class names of the dataset - scores: (optional) confidence scores for each box - title: (optional) Figure title - show_mask, show_bbox: To show masks and bounding boxes or not - figsize: (optional) the size of the image - colors: (optional) An array or colors to use with each object - captions: (optional) A list of strings to use as captions for each object - """ - # Number of instances - N = boxes.shape[0] - if not N: - print("\n*** No instances to display *** \n") - else: - assert boxes.shape[0] == masks.shape[-1] == class_ids.shape[0] - - # If no axis is passed, create one and automatically call show() - auto_show = False - if not ax: - _, ax = plt.subplots(1, figsize=figsize) - auto_show = True - - # Generate random colors - colors = colors or random_colors(N) - - # Show area outside image boundaries. - height, width = image.shape[:2] - ax.set_ylim(height + 10, -10) - ax.set_xlim(-10, width + 10) - ax.axis('off') - ax.set_title(title) - - masked_image = image.astype(np.uint32).copy() - for i in range(N): - color = colors[i] - - # Bounding box - if not np.any(boxes[i]): - # Skip this instance. Has no bbox. Likely lost in image cropping. - continue - y1, x1, y2, x2 = boxes[i] - if show_bbox: - p = patches.Rectangle((x1, y1), x2 - x1, y2 - y1, linewidth=2, - alpha=0.7, linestyle="dashed", - edgecolor=color, facecolor='none') - ax.add_patch(p) - - # Label - if not captions: - class_id = class_ids[i] - score = scores[i] if scores is not None else None - label = class_names[class_id] - caption = "{} {:.3f}".format(label, score) if score else label - else: - caption = captions[i] - ax.text(x1, y1 + 8, caption, - color='w', size=11, backgroundcolor="none") - - # Mask - mask = masks[:, :, i] - if show_mask: - masked_image = apply_mask(masked_image, mask, color) - - # Mask Polygon - # Pad to ensure proper polygons for masks that touch image edges. - padded_mask = np.zeros( - (mask.shape[0] + 2, mask.shape[1] + 2), dtype=np.uint8) - padded_mask[1:-1, 1:-1] = mask - contours = find_contours(padded_mask, 0.5) - for verts in contours: - # Subtract the padding and flip (y, x) to (x, y) - verts = np.fliplr(verts) - 1 - p = Polygon(verts, facecolor="none", edgecolor=color) - ax.add_patch(p) - ax.imshow(masked_image.astype(np.uint8)) - if auto_show: - plt.show() - - -def display_differences(image, - gt_box, gt_class_id, gt_mask, - pred_box, pred_class_id, pred_score, pred_mask, - class_names, title="", ax=None, - show_mask=True, show_box=True, - iou_threshold=0.5, score_threshold=0.5): - """Display ground truth and prediction instances on the same image.""" - # Match predictions to ground truth - gt_match, pred_match, overlaps = utils.compute_matches( - gt_box, gt_class_id, gt_mask, - pred_box, pred_class_id, pred_score, pred_mask, - iou_threshold=iou_threshold, score_threshold=score_threshold) - # Ground truth = green. Predictions = red - colors = [(0, 1, 0, .8)] * len(gt_match)\ - + [(1, 0, 0, 1)] * len(pred_match) - # Concatenate GT and predictions - class_ids = np.concatenate([gt_class_id, pred_class_id]) - scores = np.concatenate([np.zeros([len(gt_match)]), pred_score]) - boxes = np.concatenate([gt_box, pred_box]) - masks = np.concatenate([gt_mask, pred_mask], axis=-1) - # Captions per instance show score/IoU - captions = ["" for m in gt_match] + ["{:.2f} / {:.2f}".format( - pred_score[i], - (overlaps[i, int(pred_match[i])] - if pred_match[i] > -1 else overlaps[i].max())) - for i in range(len(pred_match))] - # Set title if not provided - title = title or "Ground Truth and Detections\n GT=green, pred=red, captions: score/IoU" - # Display - display_instances( - image, - boxes, masks, class_ids, - class_names, scores, ax=ax, - show_bbox=show_box, show_mask=show_mask, - colors=colors, captions=captions, - title=title) - - -def draw_rois(image, rois, refined_rois, mask, class_ids, class_names, limit=10): - """ - anchors: [n, (y1, x1, y2, x2)] list of anchors in image coordinates. - proposals: [n, 4] the same anchors but refined to fit objects better. - """ - masked_image = image.copy() - - # Pick random anchors in case there are too many. - ids = np.arange(rois.shape[0], dtype=np.int32) - ids = np.random.choice( - ids, limit, replace=False) if ids.shape[0] > limit else ids - - fig, ax = plt.subplots(1, figsize=(12, 12)) - if rois.shape[0] > limit: - plt.title("Showing {} random ROIs out of {}".format( - len(ids), rois.shape[0])) - else: - plt.title("{} ROIs".format(len(ids))) - - # Show area outside image boundaries. - ax.set_ylim(image.shape[0] + 20, -20) - ax.set_xlim(-50, image.shape[1] + 20) - ax.axis('off') - - for i, id in enumerate(ids): - color = np.random.rand(3) - class_id = class_ids[id] - # ROI - y1, x1, y2, x2 = rois[id] - p = patches.Rectangle((x1, y1), x2 - x1, y2 - y1, linewidth=2, - edgecolor=color if class_id else "gray", - facecolor='none', linestyle="dashed") - ax.add_patch(p) - # Refined ROI - if class_id: - ry1, rx1, ry2, rx2 = refined_rois[id] - p = patches.Rectangle((rx1, ry1), rx2 - rx1, ry2 - ry1, linewidth=2, - edgecolor=color, facecolor='none') - ax.add_patch(p) - # Connect the top-left corners of the anchor and proposal for easy visualization - ax.add_line(lines.Line2D([x1, rx1], [y1, ry1], color=color)) - - # Label - label = class_names[class_id] - ax.text(rx1, ry1 + 8, "{}".format(label), - color='w', size=11, backgroundcolor="none") - - # Mask - m = utils.unmold_mask(mask[id], rois[id] - [:4].astype(np.int32), image.shape) - masked_image = apply_mask(masked_image, m, color) - - ax.imshow(masked_image) - - # Print stats - print("Positive ROIs: ", class_ids[class_ids > 0].shape[0]) - print("Negative ROIs: ", class_ids[class_ids == 0].shape[0]) - print("Positive Ratio: {:.2f}".format( - class_ids[class_ids > 0].shape[0] / class_ids.shape[0])) - - -# TODO: Replace with matplotlib equivalent? -def draw_box(image, box, color): - """Draw 3-pixel width bounding boxes on the given image array. - color: list of 3 int values for RGB. - """ - y1, x1, y2, x2 = box - image[y1:y1 + 2, x1:x2] = color - image[y2:y2 + 2, x1:x2] = color - image[y1:y2, x1:x1 + 2] = color - image[y1:y2, x2:x2 + 2] = color - return image - - -def display_top_masks(image, mask, class_ids, class_names, limit=4): - """Display the given image and the top few class masks.""" - to_display = [] - titles = [] - to_display.append(image) - titles.append("H x W={}x{}".format(image.shape[0], image.shape[1])) - # Pick top prominent classes in this image - unique_class_ids = np.unique(class_ids) - mask_area = [np.sum(mask[:, :, np.where(class_ids == i)[0]]) - for i in unique_class_ids] - top_ids = [v[0] for v in sorted(zip(unique_class_ids, mask_area), - key=lambda r: r[1], reverse=True) if v[1] > 0] - # Generate images and titles - for i in range(limit): - class_id = top_ids[i] if i < len(top_ids) else -1 - # Pull masks of instances belonging to the same class. - m = mask[:, :, np.where(class_ids == class_id)[0]] - m = np.sum(m * np.arange(1, m.shape[-1] + 1), -1) - to_display.append(m) - titles.append(class_names[class_id] if class_id != -1 else "-") - display_images(to_display, titles=titles, cols=limit + 1, cmap="Blues_r") - - -def plot_precision_recall(AP, precisions, recalls): - """Draw the precision-recall curve. - - AP: Average precision at IoU >= 0.5 - precisions: list of precision values - recalls: list of recall values - """ - # Plot the Precision-Recall curve - _, ax = plt.subplots(1) - ax.set_title("Precision-Recall Curve. AP@50 = {:.3f}".format(AP)) - ax.set_ylim(0, 1.1) - ax.set_xlim(0, 1.1) - _ = ax.plot(recalls, precisions) - - -def plot_overlaps(gt_class_ids, pred_class_ids, pred_scores, - overlaps, class_names, threshold=0.5): - """Draw a grid showing how ground truth objects are classified. - gt_class_ids: [N] int. Ground truth class IDs - pred_class_id: [N] int. Predicted class IDs - pred_scores: [N] float. The probability scores of predicted classes - overlaps: [pred_boxes, gt_boxes] IoU overlaps of predictions and GT boxes. - class_names: list of all class names in the dataset - threshold: Float. The prediction probability required to predict a class - """ - gt_class_ids = gt_class_ids[gt_class_ids != 0] - pred_class_ids = pred_class_ids[pred_class_ids != 0] - - plt.figure(figsize=(12, 10)) - plt.imshow(overlaps, interpolation='nearest', cmap=plt.cm.Blues) - plt.yticks(np.arange(len(pred_class_ids)), - ["{} ({:.2f})".format(class_names[int(id)], pred_scores[i]) - for i, id in enumerate(pred_class_ids)]) - plt.xticks(np.arange(len(gt_class_ids)), - [class_names[int(id)] for id in gt_class_ids], rotation=90) - - thresh = overlaps.max() / 2. - for i, j in itertools.product(range(overlaps.shape[0]), - range(overlaps.shape[1])): - text = "" - if overlaps[i, j] > threshold: - text = "match" if gt_class_ids[j] == pred_class_ids[i] else "wrong" - color = ("white" if overlaps[i, j] > thresh - else "black" if overlaps[i, j] > 0 - else "grey") - plt.text(j, i, "{:.3f}\n{}".format(overlaps[i, j], text), - horizontalalignment="center", verticalalignment="center", - fontsize=9, color=color) - - plt.tight_layout() - plt.xlabel("Ground Truth") - plt.ylabel("Predictions") - - -def draw_boxes(image, boxes=None, refined_boxes=None, - masks=None, captions=None, visibilities=None, - title="", ax=None): - """Draw bounding boxes and segmentation masks with different - customizations. - - boxes: [N, (y1, x1, y2, x2, class_id)] in image coordinates. - refined_boxes: Like boxes, but draw with solid lines to show - that they're the result of refining 'boxes'. - masks: [N, height, width] - captions: List of N titles to display on each box - visibilities: (optional) List of values of 0, 1, or 2. Determine how - prominent each bounding box should be. - title: An optional title to show over the image - ax: (optional) Matplotlib axis to draw on. - """ - # Number of boxes - assert boxes is not None or refined_boxes is not None - N = boxes.shape[0] if boxes is not None else refined_boxes.shape[0] - - # Matplotlib Axis - if not ax: - _, ax = plt.subplots(1, figsize=(12, 12)) - - # Generate random colors - colors = random_colors(N) - - # Show area outside image boundaries. - margin = image.shape[0] // 10 - ax.set_ylim(image.shape[0] + margin, -margin) - ax.set_xlim(-margin, image.shape[1] + margin) - ax.axis('off') - - ax.set_title(title) - - masked_image = image.astype(np.uint32).copy() - for i in range(N): - # Box visibility - visibility = visibilities[i] if visibilities is not None else 1 - if visibility == 0: - color = "gray" - style = "dotted" - alpha = 0.5 - elif visibility == 1: - color = colors[i] - style = "dotted" - alpha = 1 - elif visibility == 2: - color = colors[i] - style = "solid" - alpha = 1 - - # Boxes - if boxes is not None: - if not np.any(boxes[i]): - # Skip this instance. Has no bbox. Likely lost in cropping. - continue - y1, x1, y2, x2 = boxes[i] - p = patches.Rectangle((x1, y1), x2 - x1, y2 - y1, linewidth=2, - alpha=alpha, linestyle=style, - edgecolor=color, facecolor='none') - ax.add_patch(p) - - # Refined boxes - if refined_boxes is not None and visibility > 0: - ry1, rx1, ry2, rx2 = refined_boxes[i].astype(np.int32) - p = patches.Rectangle((rx1, ry1), rx2 - rx1, ry2 - ry1, linewidth=2, - edgecolor=color, facecolor='none') - ax.add_patch(p) - # Connect the top-left corners of the anchor and proposal - if boxes is not None: - ax.add_line(lines.Line2D([x1, rx1], [y1, ry1], color=color)) - - # Captions - if captions is not None: - caption = captions[i] - # If there are refined boxes, display captions on them - if refined_boxes is not None: - y1, x1, y2, x2 = ry1, rx1, ry2, rx2 - ax.text(x1, y1, caption, size=11, verticalalignment='top', - color='w', backgroundcolor="none", - bbox={'facecolor': color, 'alpha': 0.5, - 'pad': 2, 'edgecolor': 'none'}) - - # Masks - if masks is not None: - mask = masks[:, :, i] - masked_image = apply_mask(masked_image, mask, color) - # Mask Polygon - # Pad to ensure proper polygons for masks that touch image edges. - padded_mask = np.zeros( - (mask.shape[0] + 2, mask.shape[1] + 2), dtype=np.uint8) - padded_mask[1:-1, 1:-1] = mask - contours = find_contours(padded_mask, 0.5) - for verts in contours: - # Subtract the padding and flip (y, x) to (x, y) - verts = np.fliplr(verts) - 1 - p = Polygon(verts, facecolor="none", edgecolor=color) - ax.add_patch(p) - ax.imshow(masked_image.astype(np.uint8)) - - -def display_table(table): - """Display values in a table format. - table: an iterable of rows, and each row is an iterable of values. - """ - html = "" - for row in table: - row_html = "" - for col in row: - row_html += "{:40}".format(str(col)) - html += "" + row_html + "" - html = "" + html + "
" - IPython.display.display(IPython.display.HTML(html)) - - -def display_weight_stats(model): - """Scans all the weights in the model and returns a list of tuples - that contain stats about each weight. - """ - layers = model.get_trainable_layers() - table = [["WEIGHT NAME", "SHAPE", "MIN", "MAX", "STD"]] - for l in layers: - weight_values = l.get_weights() # list of Numpy arrays - weight_tensors = l.weights # list of TF tensors - for i, w in enumerate(weight_values): - weight_name = weight_tensors[i].name - # Detect problematic layers. Exclude biases of conv layers. - alert = "" - if w.min() == w.max() and not (l.__class__.__name__ == "Conv2D" and i == 1): - alert += "*** dead?" - if np.abs(w.min()) > 1000 or np.abs(w.max()) > 1000: - alert += "*** Overflow?" - # Add row - table.append([ - weight_name + alert, - str(w.shape), - "{:+9.4f}".format(w.min()), - "{:+10.4f}".format(w.max()), - "{:+9.4f}".format(w.std()), - ]) - display_table(table) diff --git a/extractor/segmentation/Mask_RCNN/requirements.txt b/extractor/segmentation/Mask_RCNN/requirements.txt deleted file mode 100644 index e058ea0..0000000 --- a/extractor/segmentation/Mask_RCNN/requirements.txt +++ /dev/null @@ -1,11 +0,0 @@ -numpy -scipy -Pillow -cython -matplotlib -scikit-image -keras==2.1.5 -opencv-python -h5py -imgaug==0.2.9 -IPython[all] diff --git a/extractor/segmentation/Mask_RCNN/setup.cfg b/extractor/segmentation/Mask_RCNN/setup.cfg deleted file mode 100644 index 0c61b02..0000000 --- a/extractor/segmentation/Mask_RCNN/setup.cfg +++ /dev/null @@ -1,4 +0,0 @@ -[metadata] -description-file = README.md -license-file = LICENSE -requirements-file = requirements.txt \ No newline at end of file diff --git a/extractor/segmentation/Mask_RCNN/setup.py b/extractor/segmentation/Mask_RCNN/setup.py deleted file mode 100644 index 7ccc97a..0000000 --- a/extractor/segmentation/Mask_RCNN/setup.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -The build/compilations setup - ->> pip install -r requirements.txt ->> python setup.py install -""" -import pip -import logging -import pkg_resources -try: - from setuptools import setup -except ImportError: - from distutils.core import setup - - -def _parse_requirements(file_path): - pip_ver = pkg_resources.get_distribution('pip').version - pip_version = list(map(int, pip_ver.split('.')[:2])) - if pip_version >= [6, 0]: - raw = pip.req.parse_requirements(file_path, - session=pip.download.PipSession()) - else: - raw = pip.req.parse_requirements(file_path) - return [str(i.req) for i in raw] - - -# parse_requirements() returns generator of pip.req.InstallRequirement objects -try: - install_reqs = _parse_requirements("requirements.txt") -except Exception: - logging.warning('Fail load requirements file, so using default ones.') - install_reqs = [] - -setup( - name='mask-rcnn', - version='2.1', - url='https://github.com/matterport/Mask_RCNN', - author='Matterport', - author_email='waleed.abdulla@gmail.com', - license='MIT', - description='Mask R-CNN for object detection and instance segmentation', - packages=["mrcnn"], - install_requires=install_reqs, - include_package_data=True, - python_requires='>=3.4', - long_description="""This is an implementation of Mask R-CNN on Python 3, Keras, and TensorFlow. -The model generates bounding boxes and segmentation masks for each instance of an object in the image. -It's based on Feature Pyramid Network (FPN) and a ResNet101 backbone.""", - classifiers=[ - "Development Status :: 5 - Production/Stable", - "Environment :: Console", - "Intended Audience :: Developers", - "Intended Audience :: Information Technology", - "Intended Audience :: Education", - "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", - "Natural Language :: English", - "Operating System :: OS Independent", - "Topic :: Scientific/Engineering :: Artificial Intelligence", - "Topic :: Scientific/Engineering :: Image Recognition", - "Topic :: Scientific/Engineering :: Visualization", - "Topic :: Scientific/Engineering :: Image Segmentation", - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - ], - keywords="image instance segmentation object detection mask rcnn r-cnn tensorflow keras", -) diff --git a/extractor/segmentation/Mask_RCNN_TF2 b/extractor/segmentation/Mask_RCNN_TF2 new file mode 160000 index 0000000..66b6d90 --- /dev/null +++ b/extractor/segmentation/Mask_RCNN_TF2 @@ -0,0 +1 @@ +Subproject commit 66b6d909911ce88a1dcc4b221929bf15167fcab6 diff --git a/extractor/segmentation/configs.py b/extractor/segmentation/configs.py index a6dc14c..7875a72 100644 --- a/extractor/segmentation/configs.py +++ b/extractor/segmentation/configs.py @@ -1,9 +1,9 @@ import numpy as np try: - from extractor.segmentation.Mask_RCNN.mrcnn.config import Config + from extractor.segmentation.Mask_RCNN_TF2.mrcnn.config import Config except ModuleNotFoundError: - from Mask_RCNN.mrcnn.config import Config + from Mask_RCNN_TF2.mrcnn.config import Config class PVConfig(Config): @@ -15,10 +15,10 @@ class PVConfig(Config): DATASET_VAL_PATH = "/pv_segmentation_dataset/val" # Path for saving model weights and checkpoints during training - MODEL_DIR = "/pvextractor/extractor/segmentation/Mask_RCNN/logs" + MODEL_DIR = "/pvextractor/extractor/segmentation/Mask_RCNN_TF2/logs" # Path to MS COCO pretrained weights - COCO_MODEL_PATH = "/pvextractor/extractor/segmentation/Mask_RCNN/mask_rcnn_coco.h5" + COCO_MODEL_PATH = "/pvextractor/extractor/segmentation/Mask_RCNN_TF2/mask_rcnn_coco.h5" # set to False to ignore partially visible (truncated) PV modules USE_TRUNCATED_MODULES = False diff --git a/extractor/segmentation/inference.py b/extractor/segmentation/inference.py index 462b235..ecd5e49 100644 --- a/extractor/segmentation/inference.py +++ b/extractor/segmentation/inference.py @@ -13,25 +13,38 @@ from tqdm import tqdm import numpy as np import cv2 +import tensorflow as tf -import extractor.segmentation.Mask_RCNN.mrcnn.model as modellib +import sys +sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))) + +# Import the TensorFlow 2 version of Mask R-CNN +from extractor.segmentation.Mask_RCNN_TF2.mrcnn import model as modellib from extractor.common import Capture, delete_output from extractor.segmentation.configs import PVConfigIR, PVConfigRGB -# Bugfix taken from: -# https://github.com/tensorflow/tensorflow/issues/24828#issuecomment-464910864 -# Moved this into Celery task, otherwise celery worker hangs -from tensorflow.compat.v1 import ConfigProto -from tensorflow.compat.v1 import InteractiveSession -tf_config = ConfigProto() -tf_config.gpu_options.allow_growth = True -session = InteractiveSession(config=tf_config) +# Configure TensorFlow 2 to use memory growth for GPUs +physical_devices = tf.config.list_physical_devices('GPU') +if len(physical_devices) > 0: + try: + for device in physical_devices: + tf.config.experimental.set_memory_growth(device, True) + logging.info(f"Memory growth enabled for GPU device: {device}") + logging.info(f"Found {len(physical_devices)} GPU(s) available") + except RuntimeError as e: + logging.warning(f"GPU configuration failed: {e}") +else: + logging.warning("No GPU devices found. Running on CPU.") + +# Disable eager execution as required by Mask R-CNN TF2 port +tf.compat.v1.disable_eager_execution() logger = logging.getLogger(__name__) def draw_masks(image, masks, alpha=0.6): + """Draw colored masks on an image with the specified transparency.""" if masks.shape[-1] > 0: for mask in np.split(masks, masks.shape[-1], axis=-1): image_masked = np.copy(image) @@ -40,17 +53,17 @@ def draw_masks(image, masks, alpha=0.6): for c in range(image.shape[-1]): image_masked[:, :, c] = np.where( mask == 1, color[c], image[:, :, c]) - alpha = 0.6 image = cv2.addWeighted(image, alpha, image_masked, 1.0-alpha, 0.0) return image def save(frame, frame_name, result, output_dir, videowriter): - # add frame to output video + """Save detection results as masks and metadata.""" + # Add frame with masks to output video frame_preview = draw_masks(frame, result["masks"], alpha=0.6) videowriter.write(frame_preview) - # write masks as PNG files + # Write masks as PNG files mask_path_extended = os.path.join(output_dir, "masks", frame_name) os.makedirs(mask_path_extended, exist_ok=True) if result["masks"].shape[-1] > 0: @@ -62,7 +75,7 @@ def save(frame, frame_name, result, output_dir, videowriter): mask_path_extended, "mask_{:06d}.png".format(mask_id)) cv2.imwrite(mask_file, mask) - # write rois, scores and class_ids in CSV file + # Write detection metadata (ROIs, scores, class IDs) in CSV file roi_file = os.path.join(output_dir, "rois", "{}.csv".format(frame_name)) result_subset = {k: v for k, v in result.items() @@ -78,13 +91,14 @@ def save(frame, frame_name, result, output_dir, videowriter): def run(frames_root, output_dir, ir_or_rgb, gpu_count, images_per_gpu, detection_min_confidence, weights_file_ir, weights_file_rgb, output_video_fps): - + """Run Mask R-CNN inference on a set of frames.""" delete_output(output_dir) - # create output paths + # Create output paths for p in ["masks", "rois"]: os.makedirs(os.path.join(output_dir, p), exist_ok=True) + # Configure inference settings if ir_or_rgb == "ir": inference_config = PVConfigIR() else: @@ -92,13 +106,14 @@ def run(frames_root, output_dir, ir_or_rgb, gpu_count, images_per_gpu, inference_config.GPU_COUNT = gpu_count inference_config.IMAGES_PER_GPU = images_per_gpu inference_config.DETECTION_MIN_CONFIDENCE = detection_min_confidence - inference_config.__init__() # recompute batch size + inference_config.__init__() # Recompute batch size - # create model and load pretrained weights + # Create model and load pretrained weights model = modellib.MaskRCNN(mode="inference", config=inference_config, model_dir="") + # Select appropriate weights file and input files if ir_or_rgb == "ir": weights_file = weights_file_ir frame_files = sorted(glob.glob(os.path.join(frames_root, "radiometric", "*.tiff"))) @@ -106,7 +121,7 @@ def run(frames_root, output_dir, ir_or_rgb, gpu_count, images_per_gpu, weights_file = weights_file_rgb frame_files = sorted(glob.glob(os.path.join(frames_root, "rgb", "*.jpg"))) - logger.info("Loading weights from {}".format(weights_file)) + logger.info(f"Loading weights from {weights_file}") model.load_weights(weights_file, by_name=True) cap = Capture(frame_files, ir_or_rgb, mask_files=None) @@ -116,7 +131,7 @@ def run(frames_root, output_dir, ir_or_rgb, gpu_count, images_per_gpu, frames_batch = [] frame_names_batch = [] - # video writer + # Set up video writer for preview output video_shape = (cap.img_w, cap.img_h) video_path = os.path.join(output_dir, "preview.avi") fourcc = cv2.VideoWriter_fourcc(*"DIVX") @@ -128,20 +143,21 @@ def run(frames_root, output_dir, ir_or_rgb, gpu_count, images_per_gpu, if frame is None: break + # Prepare the frame for inference if ir_or_rgb == "ir": - frame = np.stack((frame, frame, frame), axis=2) # make 3-channel image + frame = np.stack((frame, frame, frame), axis=2) # Make 3-channel image else: frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) # BGR -> RGB frames_batch.append(frame) frame_names_batch.append(frame_name) - # handle last batch (pad with zeros if smaller than batch size) + # Handle last batch (pad with zeros if smaller than batch size) if step_idx == len(frame_files) - 1: orig_batch_len = len(frames_batch) for _ in range(batch_size - orig_batch_len): frames_batch.append(np.zeros_like(frames_batch[0])) - results = model.detect(frames_batch, verbose=0) # model inference + results = model.detect(frames_batch, verbose=0) # Model inference results = results[:orig_batch_len] frames_batch = frames_batch[:orig_batch_len] for frame, frame_name, result in zip( @@ -151,7 +167,7 @@ def run(frames_root, output_dir, ir_or_rgb, gpu_count, images_per_gpu, save(frame, frame_name, result, output_dir, videowriter) break - # run inference on a batch of frames + # Run inference on a batch of frames if step_idx % batch_size == batch_size - 1: results = model.detect(frames_batch, verbose=0) for frame, frame_name, result in zip( @@ -167,3 +183,27 @@ def run(frames_root, output_dir, ir_or_rgb, gpu_count, images_per_gpu, pbar.close() videowriter.release() + logger.info(f"Segmentation completed. Results saved to {output_dir}") + + +if __name__ == "__main__": + import argparse + + parser = argparse.ArgumentParser(description="Run Mask R-CNN inference on PV module frames.") + parser.add_argument("--frames_root", required=True, help="Root directory containing input frames.") + parser.add_argument("--output_dir", required=True, help="Directory to save output results.") + parser.add_argument("--ir_or_rgb", choices=["ir", "rgb"], required=True, help="Dataset type: 'ir' or 'rgb'.") + parser.add_argument("--gpu_count", type=int, default=1, help="Number of GPUs to use for inference.") + parser.add_argument("--images_per_gpu", type=int, default=2, help="Number of images per GPU.") + parser.add_argument("--detection_min_confidence", type=float, default=0.5, help="Minimum detection confidence.") + parser.add_argument("--weights_file_ir", required=False, help="Path to IR weights file.") + parser.add_argument("--weights_file_rgb", required=False, help="Path to RGB weights file.") + parser.add_argument("--output_video_fps", type=int, default=30, help="FPS for output video.") + + args = parser.parse_args() + + run(args.frames_root, args.output_dir, args.ir_or_rgb, + args.gpu_count, args.images_per_gpu, + args.detection_min_confidence, + args.weights_file_ir, args.weights_file_rgb, + args.output_video_fps) \ No newline at end of file diff --git a/extractor/segmentation/train.ipynb b/extractor/segmentation/train.ipynb index 2a85d72..9668839 100644 --- a/extractor/segmentation/train.ipynb +++ b/extractor/segmentation/train.ipynb @@ -2,53 +2,10 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Using TensorFlow backend.\n" - ] - } - ], - "source": [ - "import os\n", - "import sys\n", - "import glob\n", - "import json\n", - "import random\n", - "import math\n", - "import re\n", - "import time\n", - "import tqdm\n", - "import pickle\n", - "import imgaug\n", - "import skimage.io\n", - "import numpy as np\n", - "import cv2\n", - "import matplotlib\n", - "import matplotlib.pyplot as plt\n", - "\n", - "%matplotlib inline \n", - "\n", - "sys.path.append(\"../..\")\n", - "from extractor.segmentation.Mask_RCNN.mrcnn.config import Config\n", - "from extractor.segmentation.Mask_RCNN.mrcnn import utils\n", - "import extractor.segmentation.Mask_RCNN.mrcnn.model as modellib\n", - "from extractor.segmentation.Mask_RCNN.mrcnn import visualize\n", - "from extractor.segmentation.Mask_RCNN.mrcnn.model import log\n", - "\n", - "from extractor.segmentation.configs import PVConfig, PVConfigIR, PVConfigRGB\n", - "\n", - "# Bugfix taken from: https://github.com/tensorflow/tensorflow/issues/24828#issuecomment-464910864\n", - "from tensorflow.compat.v1 import ConfigProto\n", - "from tensorflow.compat.v1 import InteractiveSession\n", - "config = ConfigProto()\n", - "config.gpu_options.allow_growth = True\n", - "session = InteractiveSession(config=config)" - ] + "outputs": [], + "source": "import os\nimport sys\nimport glob\nimport json\nimport random\nimport math\nimport re\nimport time\nimport tqdm\nimport pickle\nimport imgaug\nimport skimage.io\nimport numpy as np\nimport cv2\nimport matplotlib\nimport matplotlib.pyplot as plt\nimport tensorflow as tf\n\n%matplotlib inline \n\n# Configure TensorFlow 2 for GPU memory growth\nphysical_devices = tf.config.list_physical_devices('GPU')\nif len(physical_devices) > 0:\n try:\n for device in physical_devices:\n tf.config.experimental.set_memory_growth(device, True)\n print(f\"GPU memory growth enabled for {len(physical_devices)} GPU(s)\")\n except RuntimeError as e:\n print(f\"GPU configuration warning: {e}\")\nelse:\n print(\"No GPU devices found. Running on CPU.\")\n\n# Disable eager execution for Mask R-CNN compatibility\ntf.compat.v1.disable_eager_execution()\n\nsys.path.append(\"../..\")\n# Updated imports to use Mask_RCNN_TF2\nfrom extractor.segmentation.Mask_RCNN_TF2.mrcnn.config import Config\nfrom extractor.segmentation.Mask_RCNN_TF2.mrcnn import utils\nimport extractor.segmentation.Mask_RCNN_TF2.mrcnn.model as modellib\nfrom extractor.segmentation.Mask_RCNN_TF2.mrcnn import visualize\nfrom extractor.segmentation.Mask_RCNN_TF2.mrcnn.model import log\n\nfrom extractor.segmentation.configs import PVConfig, PVConfigIR, PVConfigRGB\n\nprint(f\"TensorFlow version: {tf.__version__}\")\nprint(\"Successfully imported Mask_RCNN_TF2 modules\")" }, { "cell_type": "markdown", @@ -423,31 +380,10 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": null, "metadata": {}, "outputs": [], - "source": [ - "def init_model(model, weights):\n", - " \"\"\"Initialize models from pretrained weights.\n", - " Pass any of \"imagenet\", \"coco\", \"last\" or path to *.h5 weights file\n", - " into the `weights` argument.\n", - " \"\"\"\n", - " if weights == \"imagenet\":\n", - " model.load_weights(model.get_imagenet_weights(), by_name=True)\n", - " print(\"Loaded imagenet pretrained weights.\")\n", - " elif weights == \"coco\":\n", - " model.load_weights(config.COCO_MODEL_PATH, by_name=True,\n", - " exclude=[\"mrcnn_class_logits\", \"mrcnn_bbox_fc\",\n", - " \"mrcnn_bbox\", \"mrcnn_mask\"])\n", - " print(\"Loaded COCO pretrained weights.\")\n", - " elif weights == \"last\":\n", - " model.load_weights(model.find_last(), by_name=True)\n", - " print(\"Loaded weigths from {}\".format(model.find_last()))\n", - " else:\n", - " model.load_weights(weights, by_name=True)\n", - " print(\"Loaded weigths from {}\".format(weights))\n", - " return model" - ] + "source": "def init_model(model, weights):\n \"\"\"Initialize models from pretrained weights.\n Pass any of \"imagenet\", \"coco\", \"last\" or path to *.h5 weights file\n into the `weights` argument.\n \"\"\"\n if weights == \"imagenet\":\n model.load_weights(model.get_imagenet_weights(), by_name=True)\n print(\"Loaded ImageNet pretrained weights.\")\n elif weights == \"coco\":\n # Updated path for TF2 version\n coco_path = config.COCO_MODEL_PATH.replace(\"Mask_RCNN/\", \"Mask_RCNN_TF2/\")\n model.load_weights(coco_path, by_name=True,\n exclude=[\"mrcnn_class_logits\", \"mrcnn_bbox_fc\",\n \"mrcnn_bbox\", \"mrcnn_mask\"])\n print(f\"Loaded COCO pretrained weights from {coco_path}\")\n elif weights == \"last\":\n weights_path = model.find_last()\n model.load_weights(weights_path, by_name=True)\n print(\"Loaded weights from {}\".format(weights_path))\n else:\n model.load_weights(weights, by_name=True)\n print(\"Loaded weights from {}\".format(weights))\n return model" }, { "cell_type": "markdown", @@ -726,424 +662,12 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": null, "metadata": { "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/backend/tensorflow_backend.py:507: The name tf.placeholder is deprecated. Please use tf.compat.v1.placeholder instead.\n", - "\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/backend/tensorflow_backend.py:68: The name tf.get_default_graph is deprecated. Please use tf.compat.v1.get_default_graph instead.\n", - "\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/backend/tensorflow_backend.py:3831: The name tf.random_uniform is deprecated. Please use tf.random.uniform instead.\n", - "\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/backend/tensorflow_backend.py:3655: The name tf.nn.max_pool is deprecated. Please use tf.nn.max_pool2d instead.\n", - "\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/backend/tensorflow_backend.py:1940: The name tf.image.resize_nearest_neighbor is deprecated. Please use tf.compat.v1.image.resize_nearest_neighbor instead.\n", - "\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/tensorflow_core/python/ops/array_ops.py:1475: where (from tensorflow.python.ops.array_ops) is deprecated and will be removed in a future version.\n", - "Instructions for updating:\n", - "Use tf.where in 2.0, which has the same broadcast rule as np.where\n", - "WARNING:tensorflow:From ../../extractor/segmentation/Mask_RCNN/mrcnn/model.py:553: The name tf.random_shuffle is deprecated. Please use tf.random.shuffle instead.\n", - "\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/mask_rcnn-2.1-py3.6.egg/mrcnn/utils.py:202: The name tf.log is deprecated. Please use tf.math.log instead.\n", - "\n", - "WARNING:tensorflow:From ../../extractor/segmentation/Mask_RCNN/mrcnn/model.py:600: calling crop_and_resize_v1 (from tensorflow.python.ops.image_ops_impl) with box_ind is deprecated and will be removed in a future version.\n", - "Instructions for updating:\n", - "box_ind is deprecated, use box_indices instead\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/backend/tensorflow_backend.py:167: The name tf.get_default_session is deprecated. Please use tf.compat.v1.get_default_session instead.\n", - "\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/backend/tensorflow_backend.py:183: The name tf.global_variables is deprecated. Please use tf.compat.v1.global_variables instead.\n", - "\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/backend/tensorflow_backend.py:192: The name tf.is_variable_initialized is deprecated. Please use tf.compat.v1.is_variable_initialized instead.\n", - "\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/backend/tensorflow_backend.py:199: The name tf.variables_initializer is deprecated. Please use tf.compat.v1.variables_initializer instead.\n", - "\n", - "Re-starting from epoch 30\n", - "Loaded weigths from /pvextractor/extractor/segmentation/Mask_RCNN/logs/pv_modules20220912T1453/mask_rcnn_pv_modules_0030.h5\n", - "\n", - "Starting at epoch 30. LR=0.0001\n", - "\n", - "Checkpoint Path: /pvextractor/extractor/segmentation/Mask_RCNN/logs/pv_modules20220912T1453/mask_rcnn_pv_modules_{epoch:04d}.h5\n", - "Selecting layers to train\n", - "conv1 (Conv2D)\n", - "bn_conv1 (BatchNorm)\n", - "res2a_branch2a (Conv2D)\n", - "bn2a_branch2a (BatchNorm)\n", - "res2a_branch2b (Conv2D)\n", - "bn2a_branch2b (BatchNorm)\n", - "res2a_branch2c (Conv2D)\n", - "res2a_branch1 (Conv2D)\n", - "bn2a_branch2c (BatchNorm)\n", - "bn2a_branch1 (BatchNorm)\n", - "res2b_branch2a (Conv2D)\n", - "bn2b_branch2a (BatchNorm)\n", - "res2b_branch2b (Conv2D)\n", - "bn2b_branch2b (BatchNorm)\n", - "res2b_branch2c (Conv2D)\n", - "bn2b_branch2c (BatchNorm)\n", - "res2c_branch2a (Conv2D)\n", - "bn2c_branch2a (BatchNorm)\n", - "res2c_branch2b (Conv2D)\n", - "bn2c_branch2b (BatchNorm)\n", - "res2c_branch2c (Conv2D)\n", - "bn2c_branch2c (BatchNorm)\n", - "res3a_branch2a (Conv2D)\n", - "bn3a_branch2a (BatchNorm)\n", - "res3a_branch2b (Conv2D)\n", - "bn3a_branch2b (BatchNorm)\n", - "res3a_branch2c (Conv2D)\n", - "res3a_branch1 (Conv2D)\n", - "bn3a_branch2c (BatchNorm)\n", - "bn3a_branch1 (BatchNorm)\n", - "res3b_branch2a (Conv2D)\n", - "bn3b_branch2a (BatchNorm)\n", - "res3b_branch2b (Conv2D)\n", - "bn3b_branch2b (BatchNorm)\n", - "res3b_branch2c (Conv2D)\n", - "bn3b_branch2c (BatchNorm)\n", - "res3c_branch2a (Conv2D)\n", - "bn3c_branch2a (BatchNorm)\n", - "res3c_branch2b (Conv2D)\n", - "bn3c_branch2b (BatchNorm)\n", - "res3c_branch2c (Conv2D)\n", - "bn3c_branch2c (BatchNorm)\n", - "res3d_branch2a (Conv2D)\n", - "bn3d_branch2a (BatchNorm)\n", - "res3d_branch2b (Conv2D)\n", - "bn3d_branch2b (BatchNorm)\n", - "res3d_branch2c (Conv2D)\n", - "bn3d_branch2c (BatchNorm)\n", - "res4a_branch2a (Conv2D)\n", - "bn4a_branch2a (BatchNorm)\n", - "res4a_branch2b (Conv2D)\n", - "bn4a_branch2b (BatchNorm)\n", - "res4a_branch2c (Conv2D)\n", - "res4a_branch1 (Conv2D)\n", - "bn4a_branch2c (BatchNorm)\n", - "bn4a_branch1 (BatchNorm)\n", - "res4b_branch2a (Conv2D)\n", - "bn4b_branch2a (BatchNorm)\n", - "res4b_branch2b (Conv2D)\n", - "bn4b_branch2b (BatchNorm)\n", - "res4b_branch2c (Conv2D)\n", - "bn4b_branch2c (BatchNorm)\n", - "res4c_branch2a (Conv2D)\n", - "bn4c_branch2a (BatchNorm)\n", - "res4c_branch2b (Conv2D)\n", - "bn4c_branch2b (BatchNorm)\n", - "res4c_branch2c (Conv2D)\n", - "bn4c_branch2c (BatchNorm)\n", - "res4d_branch2a (Conv2D)\n", - "bn4d_branch2a (BatchNorm)\n", - "res4d_branch2b (Conv2D)\n", - "bn4d_branch2b (BatchNorm)\n", - "res4d_branch2c (Conv2D)\n", - "bn4d_branch2c (BatchNorm)\n", - "res4e_branch2a (Conv2D)\n", - "bn4e_branch2a (BatchNorm)\n", - "res4e_branch2b (Conv2D)\n", - "bn4e_branch2b (BatchNorm)\n", - "res4e_branch2c (Conv2D)\n", - "bn4e_branch2c (BatchNorm)\n", - "res4f_branch2a (Conv2D)\n", - "bn4f_branch2a (BatchNorm)\n", - "res4f_branch2b (Conv2D)\n", - "bn4f_branch2b (BatchNorm)\n", - "res4f_branch2c (Conv2D)\n", - "bn4f_branch2c (BatchNorm)\n", - "res4g_branch2a (Conv2D)\n", - "bn4g_branch2a (BatchNorm)\n", - "res4g_branch2b (Conv2D)\n", - "bn4g_branch2b (BatchNorm)\n", - "res4g_branch2c (Conv2D)\n", - "bn4g_branch2c (BatchNorm)\n", - "res4h_branch2a (Conv2D)\n", - "bn4h_branch2a (BatchNorm)\n", - "res4h_branch2b (Conv2D)\n", - "bn4h_branch2b (BatchNorm)\n", - "res4h_branch2c (Conv2D)\n", - "bn4h_branch2c (BatchNorm)\n", - "res4i_branch2a (Conv2D)\n", - "bn4i_branch2a (BatchNorm)\n", - "res4i_branch2b (Conv2D)\n", - "bn4i_branch2b (BatchNorm)\n", - "res4i_branch2c (Conv2D)\n", - "bn4i_branch2c (BatchNorm)\n", - "res4j_branch2a (Conv2D)\n", - "bn4j_branch2a (BatchNorm)\n", - "res4j_branch2b (Conv2D)\n", - "bn4j_branch2b (BatchNorm)\n", - "res4j_branch2c (Conv2D)\n", - "bn4j_branch2c (BatchNorm)\n", - "res4k_branch2a (Conv2D)\n", - "bn4k_branch2a (BatchNorm)\n", - "res4k_branch2b (Conv2D)\n", - "bn4k_branch2b (BatchNorm)\n", - "res4k_branch2c (Conv2D)\n", - "bn4k_branch2c (BatchNorm)\n", - "res4l_branch2a (Conv2D)\n", - "bn4l_branch2a (BatchNorm)\n", - "res4l_branch2b (Conv2D)\n", - "bn4l_branch2b (BatchNorm)\n", - "res4l_branch2c (Conv2D)\n", - "bn4l_branch2c (BatchNorm)\n", - "res4m_branch2a (Conv2D)\n", - "bn4m_branch2a (BatchNorm)\n", - "res4m_branch2b (Conv2D)\n", - "bn4m_branch2b (BatchNorm)\n", - "res4m_branch2c (Conv2D)\n", - "bn4m_branch2c (BatchNorm)\n", - "res4n_branch2a (Conv2D)\n", - "bn4n_branch2a (BatchNorm)\n", - "res4n_branch2b (Conv2D)\n", - "bn4n_branch2b (BatchNorm)\n", - "res4n_branch2c (Conv2D)\n", - "bn4n_branch2c (BatchNorm)\n", - "res4o_branch2a (Conv2D)\n", - "bn4o_branch2a (BatchNorm)\n", - "res4o_branch2b (Conv2D)\n", - "bn4o_branch2b (BatchNorm)\n", - "res4o_branch2c (Conv2D)\n", - "bn4o_branch2c (BatchNorm)\n", - "res4p_branch2a (Conv2D)\n", - "bn4p_branch2a (BatchNorm)\n", - "res4p_branch2b (Conv2D)\n", - "bn4p_branch2b (BatchNorm)\n", - "res4p_branch2c (Conv2D)\n", - "bn4p_branch2c (BatchNorm)\n", - "res4q_branch2a (Conv2D)\n", - "bn4q_branch2a (BatchNorm)\n", - "res4q_branch2b (Conv2D)\n", - "bn4q_branch2b (BatchNorm)\n", - "res4q_branch2c (Conv2D)\n", - "bn4q_branch2c (BatchNorm)\n", - "res4r_branch2a (Conv2D)\n", - "bn4r_branch2a (BatchNorm)\n", - "res4r_branch2b (Conv2D)\n", - "bn4r_branch2b (BatchNorm)\n", - "res4r_branch2c (Conv2D)\n", - "bn4r_branch2c (BatchNorm)\n", - "res4s_branch2a (Conv2D)\n", - "bn4s_branch2a (BatchNorm)\n", - "res4s_branch2b (Conv2D)\n", - "bn4s_branch2b (BatchNorm)\n", - "res4s_branch2c (Conv2D)\n", - "bn4s_branch2c (BatchNorm)\n", - "res4t_branch2a (Conv2D)\n", - "bn4t_branch2a (BatchNorm)\n", - "res4t_branch2b (Conv2D)\n", - "bn4t_branch2b (BatchNorm)\n", - "res4t_branch2c (Conv2D)\n", - "bn4t_branch2c (BatchNorm)\n", - "res4u_branch2a (Conv2D)\n", - "bn4u_branch2a (BatchNorm)\n", - "res4u_branch2b (Conv2D)\n", - "bn4u_branch2b (BatchNorm)\n", - "res4u_branch2c (Conv2D)\n", - "bn4u_branch2c (BatchNorm)\n", - "res4v_branch2a (Conv2D)\n", - "bn4v_branch2a (BatchNorm)\n", - "res4v_branch2b (Conv2D)\n", - "bn4v_branch2b (BatchNorm)\n", - "res4v_branch2c (Conv2D)\n", - "bn4v_branch2c (BatchNorm)\n", - "res4w_branch2a (Conv2D)\n", - "bn4w_branch2a (BatchNorm)\n", - "res4w_branch2b (Conv2D)\n", - "bn4w_branch2b (BatchNorm)\n", - "res4w_branch2c (Conv2D)\n", - "bn4w_branch2c (BatchNorm)\n", - "res5a_branch2a (Conv2D)\n", - "bn5a_branch2a (BatchNorm)\n", - "res5a_branch2b (Conv2D)\n", - "bn5a_branch2b (BatchNorm)\n", - "res5a_branch2c (Conv2D)\n", - "res5a_branch1 (Conv2D)\n", - "bn5a_branch2c (BatchNorm)\n", - "bn5a_branch1 (BatchNorm)\n", - "res5b_branch2a (Conv2D)\n", - "bn5b_branch2a (BatchNorm)\n", - "res5b_branch2b (Conv2D)\n", - "bn5b_branch2b (BatchNorm)\n", - "res5b_branch2c (Conv2D)\n", - "bn5b_branch2c (BatchNorm)\n", - "res5c_branch2a (Conv2D)\n", - "bn5c_branch2a (BatchNorm)\n", - "res5c_branch2b (Conv2D)\n", - "bn5c_branch2b (BatchNorm)\n", - "res5c_branch2c (Conv2D)\n", - "bn5c_branch2c (BatchNorm)\n", - "fpn_c5p5 (Conv2D)\n", - "fpn_c4p4 (Conv2D)\n", - "fpn_c3p3 (Conv2D)\n", - "fpn_c2p2 (Conv2D)\n", - "fpn_p5 (Conv2D)\n", - "fpn_p2 (Conv2D)\n", - "fpn_p3 (Conv2D)\n", - "fpn_p4 (Conv2D)\n", - "In model: rpn_model\n", - " rpn_conv_shared (Conv2D)\n", - " rpn_class_raw (Conv2D)\n", - " rpn_bbox_pred (Conv2D)\n", - "mrcnn_mask_conv1 (TimeDistributed)\n", - "mrcnn_mask_bn1 (TimeDistributed)\n", - "mrcnn_mask_conv2 (TimeDistributed)\n", - "mrcnn_mask_bn2 (TimeDistributed)\n", - "mrcnn_class_conv1 (TimeDistributed)\n", - "mrcnn_class_bn1 (TimeDistributed)\n", - "mrcnn_mask_conv3 (TimeDistributed)\n", - "mrcnn_mask_bn3 (TimeDistributed)\n", - "mrcnn_class_conv2 (TimeDistributed)\n", - "mrcnn_class_bn2 (TimeDistributed)\n", - "mrcnn_mask_conv4 (TimeDistributed)\n", - "mrcnn_mask_bn4 (TimeDistributed)\n", - "mrcnn_bbox_fc (TimeDistributed)\n", - "mrcnn_mask_deconv (TimeDistributed)\n", - "mrcnn_class_logits (TimeDistributed)\n", - "mrcnn_mask (TimeDistributed)\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/optimizers.py:757: The name tf.train.Optimizer is deprecated. Please use tf.compat.v1.train.Optimizer instead.\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/usr/local/lib/python3.6/dist-packages/tensorflow_core/python/framework/indexed_slices.py:424: UserWarning: Converting sparse IndexedSlices to a dense Tensor of unknown shape. This may consume a large amount of memory.\n", - " \"Converting sparse IndexedSlices to a dense Tensor of unknown shape. \"\n", - "/usr/local/lib/python3.6/dist-packages/tensorflow_core/python/framework/indexed_slices.py:424: UserWarning: Converting sparse IndexedSlices to a dense Tensor of unknown shape. This may consume a large amount of memory.\n", - " \"Converting sparse IndexedSlices to a dense Tensor of unknown shape. \"\n", - "/usr/local/lib/python3.6/dist-packages/tensorflow_core/python/framework/indexed_slices.py:424: UserWarning: Converting sparse IndexedSlices to a dense Tensor of unknown shape. This may consume a large amount of memory.\n", - " \"Converting sparse IndexedSlices to a dense Tensor of unknown shape. \"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/backend/tensorflow_backend.py:976: The name tf.assign_add is deprecated. Please use tf.compat.v1.assign_add instead.\n", - "\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/backend/tensorflow_backend.py:963: The name tf.assign is deprecated. Please use tf.compat.v1.assign instead.\n", - "\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/backend/tensorflow_backend.py:2499: The name tf.Session is deprecated. Please use tf.compat.v1.Session instead.\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/usr/local/lib/python3.6/dist-packages/keras/engine/training.py:2087: UserWarning: Using a generator with `use_multiprocessing=True` and multiple workers may duplicate your data. Please consider using the`keras.utils.Sequence class.\n", - " UserWarning('Using a generator with `use_multiprocessing=True`'\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/callbacks.py:774: The name tf.summary.merge_all is deprecated. Please use tf.compat.v1.summary.merge_all instead.\n", - "\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/callbacks.py:777: The name tf.summary.FileWriter is deprecated. Please use tf.compat.v1.summary.FileWriter instead.\n", - "\n", - "Epoch 31/60\n", - "64/65 [============================>.] - ETA: 3s - loss: 0.3575 - rpn_class_loss: 0.0100 - rpn_bbox_loss: 0.0894 - mrcnn_class_loss: 0.1350 - mrcnn_bbox_loss: 0.0399 - mrcnn_mask_loss: 0.0833" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/usr/local/lib/python3.6/dist-packages/keras/engine/training.py:2330: UserWarning: Using a generator with `use_multiprocessing=True` and multiple workers may duplicate your data. Please consider using the`keras.utils.Sequence class.\n", - " UserWarning('Using a generator with `use_multiprocessing=True`'\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "65/65 [==============================] - 292s 4s/step - loss: 0.3589 - rpn_class_loss: 0.0101 - rpn_bbox_loss: 0.0893 - mrcnn_class_loss: 0.1356 - mrcnn_bbox_loss: 0.0403 - mrcnn_mask_loss: 0.0835 - val_loss: 0.3044 - val_rpn_class_loss: 0.0122 - val_rpn_bbox_loss: 0.0833 - val_mrcnn_class_loss: 0.1169 - val_mrcnn_bbox_loss: 0.0301 - val_mrcnn_mask_loss: 0.0620\n", - "WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/keras/callbacks.py:860: The name tf.Summary is deprecated. Please use tf.compat.v1.Summary instead.\n", - "\n", - "Epoch 32/60\n", - "65/65 [==============================] - 138s 2s/step - loss: 0.3066 - rpn_class_loss: 0.0110 - rpn_bbox_loss: 0.0694 - mrcnn_class_loss: 0.1161 - mrcnn_bbox_loss: 0.0304 - mrcnn_mask_loss: 0.0797 - val_loss: 0.3394 - val_rpn_class_loss: 0.0141 - val_rpn_bbox_loss: 0.0988 - val_mrcnn_class_loss: 0.1209 - val_mrcnn_bbox_loss: 0.0435 - val_mrcnn_mask_loss: 0.0620\n", - "Epoch 33/60\n", - "65/65 [==============================] - 144s 2s/step - loss: 0.2921 - rpn_class_loss: 0.0119 - rpn_bbox_loss: 0.0683 - mrcnn_class_loss: 0.1084 - mrcnn_bbox_loss: 0.0256 - mrcnn_mask_loss: 0.0779 - val_loss: 0.3146 - val_rpn_class_loss: 0.0075 - val_rpn_bbox_loss: 0.0650 - val_mrcnn_class_loss: 0.1499 - val_mrcnn_bbox_loss: 0.0255 - val_mrcnn_mask_loss: 0.0666\n", - "Epoch 34/60\n", - "65/65 [==============================] - 144s 2s/step - loss: 0.3055 - rpn_class_loss: 0.0082 - rpn_bbox_loss: 0.0623 - mrcnn_class_loss: 0.1195 - mrcnn_bbox_loss: 0.0313 - mrcnn_mask_loss: 0.0842 - val_loss: 0.3088 - val_rpn_class_loss: 0.0066 - val_rpn_bbox_loss: 0.0816 - val_mrcnn_class_loss: 0.1188 - val_mrcnn_bbox_loss: 0.0330 - val_mrcnn_mask_loss: 0.0687\n", - "Epoch 35/60\n", - "65/65 [==============================] - 138s 2s/step - loss: 0.2805 - rpn_class_loss: 0.0099 - rpn_bbox_loss: 0.0595 - mrcnn_class_loss: 0.1023 - mrcnn_bbox_loss: 0.0277 - mrcnn_mask_loss: 0.0812 - val_loss: 0.2822 - val_rpn_class_loss: 0.0083 - val_rpn_bbox_loss: 0.0684 - val_mrcnn_class_loss: 0.1186 - val_mrcnn_bbox_loss: 0.0279 - val_mrcnn_mask_loss: 0.0591\n", - "Epoch 36/60\n", - "65/65 [==============================] - 142s 2s/step - loss: 0.2501 - rpn_class_loss: 0.0111 - rpn_bbox_loss: 0.0517 - mrcnn_class_loss: 0.0899 - mrcnn_bbox_loss: 0.0225 - mrcnn_mask_loss: 0.0749 - val_loss: 0.2856 - val_rpn_class_loss: 0.0108 - val_rpn_bbox_loss: 0.0751 - val_mrcnn_class_loss: 0.1229 - val_mrcnn_bbox_loss: 0.0252 - val_mrcnn_mask_loss: 0.0517\n", - "Epoch 37/60\n", - "65/65 [==============================] - 159s 2s/step - loss: 0.2696 - rpn_class_loss: 0.0089 - rpn_bbox_loss: 0.0567 - mrcnn_class_loss: 0.1048 - mrcnn_bbox_loss: 0.0255 - mrcnn_mask_loss: 0.0738 - val_loss: 0.3135 - val_rpn_class_loss: 0.0074 - val_rpn_bbox_loss: 0.0596 - val_mrcnn_class_loss: 0.1400 - val_mrcnn_bbox_loss: 0.0318 - val_mrcnn_mask_loss: 0.0747\n", - "Epoch 38/60\n", - "65/65 [==============================] - 147s 2s/step - loss: 0.2490 - rpn_class_loss: 0.0070 - rpn_bbox_loss: 0.0470 - mrcnn_class_loss: 0.0970 - mrcnn_bbox_loss: 0.0230 - mrcnn_mask_loss: 0.0750 - val_loss: 0.3100 - val_rpn_class_loss: 0.0096 - val_rpn_bbox_loss: 0.0723 - val_mrcnn_class_loss: 0.1330 - val_mrcnn_bbox_loss: 0.0287 - val_mrcnn_mask_loss: 0.0663\n", - "Epoch 39/60\n", - "65/65 [==============================] - 150s 2s/step - loss: 0.2495 - rpn_class_loss: 0.0086 - rpn_bbox_loss: 0.0510 - mrcnn_class_loss: 0.0913 - mrcnn_bbox_loss: 0.0240 - mrcnn_mask_loss: 0.0746 - val_loss: 0.2575 - val_rpn_class_loss: 0.0077 - val_rpn_bbox_loss: 0.0411 - val_mrcnn_class_loss: 0.1179 - val_mrcnn_bbox_loss: 0.0222 - val_mrcnn_mask_loss: 0.0686\n", - "Epoch 40/60\n", - "65/65 [==============================] - 143s 2s/step - loss: 0.2508 - rpn_class_loss: 0.0086 - rpn_bbox_loss: 0.0479 - mrcnn_class_loss: 0.0958 - mrcnn_bbox_loss: 0.0211 - mrcnn_mask_loss: 0.0774 - val_loss: 0.2855 - val_rpn_class_loss: 0.0093 - val_rpn_bbox_loss: 0.0644 - val_mrcnn_class_loss: 0.1321 - val_mrcnn_bbox_loss: 0.0254 - val_mrcnn_mask_loss: 0.0543\n", - "Epoch 41/60\n", - "65/65 [==============================] - 149s 2s/step - loss: 0.2103 - rpn_class_loss: 0.0065 - rpn_bbox_loss: 0.0387 - mrcnn_class_loss: 0.0804 - mrcnn_bbox_loss: 0.0176 - mrcnn_mask_loss: 0.0671 - val_loss: 0.2473 - val_rpn_class_loss: 0.0074 - val_rpn_bbox_loss: 0.0526 - val_mrcnn_class_loss: 0.0943 - val_mrcnn_bbox_loss: 0.0289 - val_mrcnn_mask_loss: 0.0642\n", - "Epoch 42/60\n", - "65/65 [==============================] - 133s 2s/step - loss: 0.2334 - rpn_class_loss: 0.0117 - rpn_bbox_loss: 0.0432 - mrcnn_class_loss: 0.0823 - mrcnn_bbox_loss: 0.0210 - mrcnn_mask_loss: 0.0751 - val_loss: 0.2875 - val_rpn_class_loss: 0.0066 - val_rpn_bbox_loss: 0.0607 - val_mrcnn_class_loss: 0.1341 - val_mrcnn_bbox_loss: 0.0270 - val_mrcnn_mask_loss: 0.0590\n", - "Epoch 43/60\n", - "65/65 [==============================] - 155s 2s/step - loss: 0.2631 - rpn_class_loss: 0.0100 - rpn_bbox_loss: 0.0508 - mrcnn_class_loss: 0.0982 - mrcnn_bbox_loss: 0.0256 - mrcnn_mask_loss: 0.0786 - val_loss: 0.2846 - val_rpn_class_loss: 0.0087 - val_rpn_bbox_loss: 0.0523 - val_mrcnn_class_loss: 0.1252 - val_mrcnn_bbox_loss: 0.0262 - val_mrcnn_mask_loss: 0.0723\n", - "Epoch 44/60\n", - "65/65 [==============================] - 144s 2s/step - loss: 0.2360 - rpn_class_loss: 0.0071 - rpn_bbox_loss: 0.0403 - mrcnn_class_loss: 0.0922 - mrcnn_bbox_loss: 0.0219 - mrcnn_mask_loss: 0.0744 - val_loss: 0.2689 - val_rpn_class_loss: 0.0065 - val_rpn_bbox_loss: 0.0513 - val_mrcnn_class_loss: 0.1338 - val_mrcnn_bbox_loss: 0.0208 - val_mrcnn_mask_loss: 0.0565\n", - "Epoch 45/60\n", - "65/65 [==============================] - 142s 2s/step - loss: 0.2646 - rpn_class_loss: 0.0101 - rpn_bbox_loss: 0.0495 - mrcnn_class_loss: 0.0932 - mrcnn_bbox_loss: 0.0303 - mrcnn_mask_loss: 0.0814 - val_loss: 0.2228 - val_rpn_class_loss: 0.0078 - val_rpn_bbox_loss: 0.0466 - val_mrcnn_class_loss: 0.0899 - val_mrcnn_bbox_loss: 0.0219 - val_mrcnn_mask_loss: 0.0566\n", - "Epoch 46/60\n", - "65/65 [==============================] - 149s 2s/step - loss: 0.2213 - rpn_class_loss: 0.0059 - rpn_bbox_loss: 0.0387 - mrcnn_class_loss: 0.0807 - mrcnn_bbox_loss: 0.0217 - mrcnn_mask_loss: 0.0743 - val_loss: 0.2926 - val_rpn_class_loss: 0.0123 - val_rpn_bbox_loss: 0.0554 - val_mrcnn_class_loss: 0.1342 - val_mrcnn_bbox_loss: 0.0259 - val_mrcnn_mask_loss: 0.0648\n", - "Epoch 47/60\n", - "65/65 [==============================] - 146s 2s/step - loss: 0.2238 - rpn_class_loss: 0.0082 - rpn_bbox_loss: 0.0360 - mrcnn_class_loss: 0.0874 - mrcnn_bbox_loss: 0.0190 - mrcnn_mask_loss: 0.0731 - val_loss: 0.2815 - val_rpn_class_loss: 0.0075 - val_rpn_bbox_loss: 0.0589 - val_mrcnn_class_loss: 0.1264 - val_mrcnn_bbox_loss: 0.0279 - val_mrcnn_mask_loss: 0.0607\n", - "Epoch 48/60\n", - "65/65 [==============================] - 159s 2s/step - loss: 0.2238 - rpn_class_loss: 0.0063 - rpn_bbox_loss: 0.0381 - mrcnn_class_loss: 0.0844 - mrcnn_bbox_loss: 0.0202 - mrcnn_mask_loss: 0.0748 - val_loss: 0.2734 - val_rpn_class_loss: 0.0048 - val_rpn_bbox_loss: 0.0515 - val_mrcnn_class_loss: 0.1259 - val_mrcnn_bbox_loss: 0.0228 - val_mrcnn_mask_loss: 0.0683\n", - "Epoch 49/60\n", - "65/65 [==============================] - 133s 2s/step - loss: 0.2395 - rpn_class_loss: 0.0086 - rpn_bbox_loss: 0.0425 - mrcnn_class_loss: 0.0871 - mrcnn_bbox_loss: 0.0234 - mrcnn_mask_loss: 0.0779 - val_loss: 0.2291 - val_rpn_class_loss: 0.0069 - val_rpn_bbox_loss: 0.0438 - val_mrcnn_class_loss: 0.1127 - val_mrcnn_bbox_loss: 0.0164 - val_mrcnn_mask_loss: 0.0492\n", - "Epoch 50/60\n", - "65/65 [==============================] - 174s 3s/step - loss: 0.2415 - rpn_class_loss: 0.0080 - rpn_bbox_loss: 0.0424 - mrcnn_class_loss: 0.0847 - mrcnn_bbox_loss: 0.0235 - mrcnn_mask_loss: 0.0829 - val_loss: 0.2808 - val_rpn_class_loss: 0.0105 - val_rpn_bbox_loss: 0.0510 - val_mrcnn_class_loss: 0.1413 - val_mrcnn_bbox_loss: 0.0210 - val_mrcnn_mask_loss: 0.0569\n", - "Epoch 51/60\n", - "65/65 [==============================] - 168s 3s/step - loss: 0.2270 - rpn_class_loss: 0.0048 - rpn_bbox_loss: 0.0352 - mrcnn_class_loss: 0.0886 - mrcnn_bbox_loss: 0.0218 - mrcnn_mask_loss: 0.0765 - val_loss: 0.2479 - val_rpn_class_loss: 0.0037 - val_rpn_bbox_loss: 0.0470 - val_mrcnn_class_loss: 0.1204 - val_mrcnn_bbox_loss: 0.0223 - val_mrcnn_mask_loss: 0.0545\n", - "Epoch 52/60\n", - "65/65 [==============================] - 164s 3s/step - loss: 0.2229 - rpn_class_loss: 0.0078 - rpn_bbox_loss: 0.0382 - mrcnn_class_loss: 0.0792 - mrcnn_bbox_loss: 0.0211 - mrcnn_mask_loss: 0.0766 - val_loss: 0.2462 - val_rpn_class_loss: 0.0052 - val_rpn_bbox_loss: 0.0436 - val_mrcnn_class_loss: 0.1038 - val_mrcnn_bbox_loss: 0.0234 - val_mrcnn_mask_loss: 0.0702\n", - "Epoch 53/60\n", - "65/65 [==============================] - 153s 2s/step - loss: 0.1919 - rpn_class_loss: 0.0062 - rpn_bbox_loss: 0.0299 - mrcnn_class_loss: 0.0723 - mrcnn_bbox_loss: 0.0157 - mrcnn_mask_loss: 0.0678 - val_loss: 0.2513 - val_rpn_class_loss: 0.0034 - val_rpn_bbox_loss: 0.0496 - val_mrcnn_class_loss: 0.1181 - val_mrcnn_bbox_loss: 0.0215 - val_mrcnn_mask_loss: 0.0587\n", - "Epoch 54/60\n", - "65/65 [==============================] - 145s 2s/step - loss: 0.1914 - rpn_class_loss: 0.0035 - rpn_bbox_loss: 0.0296 - mrcnn_class_loss: 0.0699 - mrcnn_bbox_loss: 0.0178 - mrcnn_mask_loss: 0.0706 - val_loss: 0.2597 - val_rpn_class_loss: 0.0073 - val_rpn_bbox_loss: 0.0494 - val_mrcnn_class_loss: 0.1331 - val_mrcnn_bbox_loss: 0.0184 - val_mrcnn_mask_loss: 0.0515\n", - "Epoch 55/60\n", - "65/65 [==============================] - 154s 2s/step - loss: 0.2038 - rpn_class_loss: 0.0052 - rpn_bbox_loss: 0.0301 - mrcnn_class_loss: 0.0799 - mrcnn_bbox_loss: 0.0178 - mrcnn_mask_loss: 0.0709 - val_loss: 0.2649 - val_rpn_class_loss: 0.0076 - val_rpn_bbox_loss: 0.0385 - val_mrcnn_class_loss: 0.1524 - val_mrcnn_bbox_loss: 0.0163 - val_mrcnn_mask_loss: 0.0500\n", - "Epoch 56/60\n", - "65/65 [==============================] - 165s 3s/step - loss: 0.2257 - rpn_class_loss: 0.0056 - rpn_bbox_loss: 0.0378 - mrcnn_class_loss: 0.0785 - mrcnn_bbox_loss: 0.0227 - mrcnn_mask_loss: 0.0809 - val_loss: 0.2211 - val_rpn_class_loss: 0.0051 - val_rpn_bbox_loss: 0.0386 - val_mrcnn_class_loss: 0.0966 - val_mrcnn_bbox_loss: 0.0208 - val_mrcnn_mask_loss: 0.0600\n", - "Epoch 57/60\n", - "65/65 [==============================] - 170s 3s/step - loss: 0.2009 - rpn_class_loss: 0.0054 - rpn_bbox_loss: 0.0316 - mrcnn_class_loss: 0.0699 - mrcnn_bbox_loss: 0.0177 - mrcnn_mask_loss: 0.0762 - val_loss: 0.2725 - val_rpn_class_loss: 0.0062 - val_rpn_bbox_loss: 0.0453 - val_mrcnn_class_loss: 0.1262 - val_mrcnn_bbox_loss: 0.0244 - val_mrcnn_mask_loss: 0.0704\n", - "Epoch 58/60\n", - "65/65 [==============================] - 136s 2s/step - loss: 0.1788 - rpn_class_loss: 0.0049 - rpn_bbox_loss: 0.0260 - mrcnn_class_loss: 0.0663 - mrcnn_bbox_loss: 0.0150 - mrcnn_mask_loss: 0.0665 - val_loss: 0.2711 - val_rpn_class_loss: 0.0044 - val_rpn_bbox_loss: 0.0495 - val_mrcnn_class_loss: 0.1314 - val_mrcnn_bbox_loss: 0.0231 - val_mrcnn_mask_loss: 0.0627\n", - "Epoch 59/60\n", - "65/65 [==============================] - 150s 2s/step - loss: 0.1937 - rpn_class_loss: 0.0041 - rpn_bbox_loss: 0.0261 - mrcnn_class_loss: 0.0782 - mrcnn_bbox_loss: 0.0167 - mrcnn_mask_loss: 0.0686 - val_loss: 0.2121 - val_rpn_class_loss: 0.0044 - val_rpn_bbox_loss: 0.0297 - val_mrcnn_class_loss: 0.1043 - val_mrcnn_bbox_loss: 0.0163 - val_mrcnn_mask_loss: 0.0574\n", - "Epoch 60/60\n", - "65/65 [==============================] - 155s 2s/step - loss: 0.2149 - rpn_class_loss: 0.0059 - rpn_bbox_loss: 0.0332 - mrcnn_class_loss: 0.0788 - mrcnn_bbox_loss: 0.0194 - mrcnn_mask_loss: 0.0776 - val_loss: 0.2316 - val_rpn_class_loss: 0.0039 - val_rpn_bbox_loss: 0.0375 - val_mrcnn_class_loss: 0.1034 - val_mrcnn_bbox_loss: 0.0209 - val_mrcnn_mask_loss: 0.0660\n" - ] - } - ], - "source": [ - "num_epochs_finetune = 30 #60\n", - "\n", - "model = modellib.MaskRCNN(mode=\"training\", config=config, model_dir=config.MODEL_DIR)\n", - "#model = init_model(model, weights=\"last\")\n", - "#model = init_model(model, weights=os.path.join(config.MODEL_DIR, \"pv_modules20210521T1611\", \"mask_rcnn_pv_modules_0060.h5\")) # ir\n", - "model = init_model(model, weights=os.path.join(config.MODEL_DIR, \"pv_modules20220912T1453\", \"mask_rcnn_pv_modules_0030.h5\"))\n", - "\n", - "history_finetune = model.train(dataset_train, dataset_val,\n", - " learning_rate=config.LEARNING_RATE / 10,\n", - " epochs=num_epochs_head+num_epochs_finetune,\n", - " layers=\"all\",\n", - " augmentation=train_augmenter)" - ] + "outputs": [], + "source": "num_epochs_finetune = 30 #60\n\nmodel = modellib.MaskRCNN(mode=\"training\", config=config, model_dir=config.MODEL_DIR)\n#model = init_model(model, weights=\"last\")\n#model = init_model(model, weights=os.path.join(config.MODEL_DIR, \"pv_modules20210521T1611\", \"mask_rcnn_pv_modules_0060.h5\")) # ir\n# Updated path to use Mask_RCNN_TF2\nmodel_dir_tf2 = config.MODEL_DIR.replace(\"Mask_RCNN/\", \"Mask_RCNN_TF2/\")\nmodel = init_model(model, weights=os.path.join(model_dir_tf2, \"pv_modules20220912T1453\", \"mask_rcnn_pv_modules_0030.h5\"))\n\nhistory_finetune = model.train(dataset_train, dataset_val,\n learning_rate=config.LEARNING_RATE / 10,\n epochs=num_epochs_head+num_epochs_finetune,\n layers=\"all\",\n augmentation=train_augmenter)" }, { "cell_type": "markdown", @@ -1168,35 +692,12 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": null, "metadata": { "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "WARNING:tensorflow:From ../../extractor/segmentation/Mask_RCNN/mrcnn/model.py:720: The name tf.sets.set_intersection is deprecated. Please use tf.sets.intersection instead.\n", - "\n", - "WARNING:tensorflow:From ../../extractor/segmentation/Mask_RCNN/mrcnn/model.py:722: The name tf.sparse_tensor_to_dense is deprecated. Please use tf.sparse.to_dense instead.\n", - "\n", - "WARNING:tensorflow:From ../../extractor/segmentation/Mask_RCNN/mrcnn/model.py:772: to_float (from tensorflow.python.ops.math_ops) is deprecated and will be removed in a future version.\n", - "Instructions for updating:\n", - "Use `tf.cast` instead.\n", - "Re-starting from epoch 59\n", - "Loaded weigths from /pvextractor/extractor/segmentation/Mask_RCNN/logs/pv_modules20220912T1453/mask_rcnn_pv_modules_0059.h5\n" - ] - } - ], - "source": [ - "model = modellib.MaskRCNN(mode=\"inference\", \n", - " config=inference_config,\n", - " model_dir=config.MODEL_DIR)\n", - "#model = init_model(model, weights=\"last\")\n", - "#model = init_model(model, weights=os.path.join(config.MODEL_DIR, \"pv_modules20210521T1611\", \"mask_rcnn_pv_modules_0120.h5\")) # ir\n", - "model = init_model(model, weights=os.path.join(config.MODEL_DIR, \"pv_modules20220912T1453\", \"mask_rcnn_pv_modules_0059.h5\"))" - ] + "outputs": [], + "source": "model = modellib.MaskRCNN(mode=\"inference\", \n config=inference_config,\n model_dir=config.MODEL_DIR)\n#model = init_model(model, weights=\"last\")\n#model = init_model(model, weights=os.path.join(config.MODEL_DIR, \"pv_modules20210521T1611\", \"mask_rcnn_pv_modules_0120.h5\")) # ir\n# Updated path to use Mask_RCNN_TF2\nmodel_dir_tf2 = config.MODEL_DIR.replace(\"Mask_RCNN/\", \"Mask_RCNN_TF2/\")\nmodel = init_model(model, weights=os.path.join(model_dir_tf2, \"pv_modules20220912T1453\", \"mask_rcnn_pv_modules_0059.h5\"))" }, { "cell_type": "code", @@ -1601,4 +1102,4 @@ }, "nbformat": 4, "nbformat_minor": 4 -} +} \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index efc01ba..184e8c1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,38 +1,52 @@ -numpy==1.18.1 -opencv-python==4.2.0.34 -networkx==2.4 -matplotlib==3.3.0 -scipy==1.5.2 -tqdm==4.48.2 -tifffile==2020.9.3 -pytransform3d==1.9.1 -Shapely==1.7.1 -jupyterlab +# Core numerical and scientific computing +numpy>=1.24.0,<2.0 +opencv-python>=4.8.0 +networkx>=3.0 +matplotlib>=3.7.0 +scipy>=1.10.0 +tqdm>=4.65.0 +tifffile>=2023.7.10 +pytransform3d>=2.4.0 +Shapely>=2.0.0 +jupyterlab>=4.0.0 # for testing -deepdiff==5.7.0 -hypothesis[numpy]==6.31.6 +deepdiff>=6.7.0 +hypothesis[numpy]>=6.80.0 -# additional for Mask R-CNN -scikit-image==0.16.2 -cython==0.29.21 -keras==2.1.5 -h5py==2.10.0 -imgaug==0.2.9 -IPython[all] +# additional for Mask R-CNN TF2 +scikit-image>=0.21.0 +cython>=3.0.0 +tensorflow>=2.14.0 +keras>=2.14.0 +h5py>=3.8.0 +imgaug>=0.4.0 +IPython[all]>=8.0.0 +protobuf>=4.21.0,<5.0 -# additional for OpenSfM -cloudpickle==0.4.0 -exifread==2.1.2 -flask==1.1.2 -fpdf2==2.4.2 -joblib==0.14.1 -Pillow==8.3.1 -pyproj==2.5.0 -pytest==3.0.7 -python-dateutil==2.8.2 -pyyaml==5.4 -Sphinx==3.4.3 -six==1.16.0 -xmltodict==0.10.2 -wheel +# additional for OpenSfM +cloudpickle>=2.2.0 +exifread>=3.0.0 +flask>=2.3.0 +fpdf2>=2.7.0 +joblib>=1.3.0 +Pillow>=10.0.0 +pyproj>=3.4.0 +pytest>=7.4.0 +python-dateutil>=2.8.2 +pyyaml>=6.0.0 +Sphinx>=7.1.0 +six>=1.16.0 +xmltodict>=0.13.0 +wheel>=0.40.0 + +# API dependencies (optional - install separately if using API mode) +# pip install -r api/requirements.txt for API functionality +# FastAPI and dependencies +# fastapi>=0.104.1 +# uvicorn[standard]>=0.24.0 +# pydantic>=2.5.0 +# PyJWT>=2.8.0 +# python-multipart>=0.0.6 +# psutil>=5.9.6 +# pynvml>=11.5.0 diff --git a/scripts/convert_weights_tf1_to_tf2.py b/scripts/convert_weights_tf1_to_tf2.py new file mode 100644 index 0000000..062f928 --- /dev/null +++ b/scripts/convert_weights_tf1_to_tf2.py @@ -0,0 +1,77 @@ +""" +Converts Mask R-CNN weights from TensorFlow 1.x format to TensorFlow 2.x format. +""" + +import os +import sys +import h5py +import numpy as np +import tensorflow as tf + +# Configure TensorFlow 2 to use memory growth for GPUs +physical_devices = tf.config.list_physical_devices('GPU') +if len(physical_devices) > 0: + for device in physical_devices: + tf.config.experimental.set_memory_growth(device, True) + +# Disable eager execution as required by Mask R-CNN TF2 port +tf.compat.v1.disable_eager_execution() + +sys.path.append(os.path.abspath(os.path.dirname(os.path.dirname(__file__)))) +from extractor.segmentation.Mask_RCNN_TF2.mrcnn import model as modellib +from extractor.segmentation.configs import PVConfigIR, PVConfigRGB + +def convert_weights_simple(source_weights_path, target_weights_path, model_type="ir"): + """ + Simple weight conversion using TF1 compatibility mode. + """ + print(f"Converting weights from {source_weights_path} to {target_weights_path}") + + # Create config and model + if model_type == "ir": + config = PVConfigIR() + else: + config = PVConfigRGB() + + config.GPU_COUNT = 1 + config.IMAGES_PER_GPU = 1 + config.__init__() # Recompute batch size + + # Enable eager execution temporarily for weight loading + tf.compat.v1.enable_eager_execution() + + try: + # Create model in inference mode + model = modellib.MaskRCNN(mode="inference", config=config, model_dir="") + + # Load the original weights using Keras compatibility + print("Loading original weights...") + model.keras_model.load_weights(source_weights_path, by_name=True, skip_mismatch=True) + + # Save in TF2 format + print("Saving converted weights...") + model.keras_model.save_weights(target_weights_path) + + print(f"Weights successfully converted and saved to {target_weights_path}") + + except Exception as e: + print(f"Error during conversion: {e}") + return False + finally: + # Disable eager execution again + tf.compat.v1.disable_eager_execution() + + return True + +if __name__ == "__main__": + import argparse + + parser = argparse.ArgumentParser(description="Convert TF1 Mask R-CNN weights to TF2 format") + parser.add_argument("--source", required=True, help="Source TF1 weights file path") + parser.add_argument("--target", required=True, help="Target TF2 weights file path") + parser.add_argument("--model_type", choices=["ir", "rgb"], default="ir", + help="Model type (ir or rgb)") + + args = parser.parse_args() + + convert_weights_simple(args.source, args.target, args.model_type) \ No newline at end of file diff --git a/scripts/download-models.sh b/scripts/download-models.sh new file mode 100755 index 0000000..f9f176b --- /dev/null +++ b/scripts/download-models.sh @@ -0,0 +1,54 @@ +#!/bin/bash + +# PV-Hawk Model Download Script +# Downloads pre-trained model weights for PV module detection + +set -e + +MODELS_DIR="models" +BASE_URL="https://github.com/LukasBommes/PV-Hawk/releases/download/v1.0.0" + +echo "πŸ“₯ Downloading PV-Hawk model weights..." +echo "======================================" + +# Create models directory if it doesn't exist +mkdir -p "$MODELS_DIR" + +# Download IR model weights +IR_MODEL="mask_rcnn_pv_modules_0120.h5" +if [ ! -f "$MODELS_DIR/$IR_MODEL" ]; then + echo "Downloading IR model weights..." + curl -L -o "$MODELS_DIR/$IR_MODEL" "$BASE_URL/$IR_MODEL" + echo "βœ… Downloaded: $IR_MODEL" +else + echo "βœ… Already exists: $IR_MODEL" +fi + +# Download RGB model weights +RGB_MODEL="mask_rcnn_pv_modules_rgb_0059.h5" +if [ ! -f "$MODELS_DIR/$RGB_MODEL" ]; then + echo "Downloading RGB model weights..." + curl -L -o "$MODELS_DIR/$RGB_MODEL" "$BASE_URL/$RGB_MODEL" + echo "βœ… Downloaded: $RGB_MODEL" +else + echo "βœ… Already exists: $RGB_MODEL" +fi + +# Download COCO pre-trained weights (optional) +COCO_MODEL="mask_rcnn_coco.h5" +if [ ! -f "$MODELS_DIR/$COCO_MODEL" ]; then + echo "Downloading COCO pre-trained weights (optional)..." + curl -L -o "$MODELS_DIR/$COCO_MODEL" "$BASE_URL/$COCO_MODEL" + echo "βœ… Downloaded: $COCO_MODEL" +else + echo "βœ… Already exists: $COCO_MODEL" +fi + +echo "" +echo "πŸŽ‰ Model download complete!" +echo "Models are now available in the $MODELS_DIR/ directory" +echo "" +echo "Available models:" +echo "- $IR_MODEL (for infrared/thermal images)" +echo "- $RGB_MODEL (for RGB/visual images)" +echo "- $COCO_MODEL (COCO pre-trained weights)" \ No newline at end of file diff --git a/scripts/setup.sh b/scripts/setup.sh new file mode 100755 index 0000000..ea2a6b4 --- /dev/null +++ b/scripts/setup.sh @@ -0,0 +1,114 @@ +#!/bin/bash + +# PV-Hawk Docker Setup Script +# This script helps set up the environment for running PV-Hawk with Docker + +set -e + +echo "πŸš€ PV-Hawk Docker Setup" +echo "=======================" + +# Check if running on Linux +if [[ "$OSTYPE" != "linux-gnu"* ]]; then + echo "⚠️ This script is designed for Linux. For Windows/macOS, please follow the manual setup in DOCKER_USAGE.md" + exit 1 +fi + +# Check Docker installation +if ! command -v docker &> /dev/null; then + echo "❌ Docker is not installed. Please install Docker first." + echo " Visit: https://docs.docker.com/get-docker/" + exit 1 +fi + +echo "βœ… Docker found: $(docker --version)" + +# Check Docker Compose installation +if ! command -v docker-compose &> /dev/null; then + echo "❌ Docker Compose is not installed. Please install Docker Compose first." + echo " Visit: https://docs.docker.com/compose/install/" + exit 1 +fi + +echo "βœ… Docker Compose found: $(docker-compose --version)" + +# Check NVIDIA Docker support +if command -v nvidia-smi &> /dev/null; then + echo "βœ… NVIDIA GPU detected: $(nvidia-smi --query-gpu=name --format=csv,noheader,nounits | head -1)" + + # Test NVIDIA Container Toolkit + if docker run --rm --gpus all nvidia/cuda:11.8-base-ubuntu20.04 nvidia-smi &> /dev/null; then + echo "βœ… NVIDIA Container Toolkit is working" + else + echo "⚠️ NVIDIA Container Toolkit may not be properly configured" + echo " Please install: https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html" + fi +else + echo "⚠️ No NVIDIA GPU detected. The system will run on CPU only." +fi + +# Create directory structure +echo "πŸ“ Creating directory structure..." + +directories=( + "data" + "workdir" + "config" + "calibration" + "models" + "output" +) + +for dir in "${directories[@]}"; do + if [ ! -d "$dir" ]; then + mkdir -p "$dir" + echo " Created: $dir/" + else + echo " Exists: $dir/" + fi +done + +# Copy environment file if it doesn't exist +if [ ! -f ".env" ]; then + cp .env.example .env + echo "βœ… Created .env file from template" + echo " Please edit .env to match your system paths" +else + echo "βœ… .env file already exists" +fi + +# Copy config file if it doesn't exist +if [ ! -f "workdir/config.yml" ]; then + cp config/config.yml.example workdir/config.yml + echo "βœ… Created config.yml from template" + echo " Please edit workdir/config.yml for your processing needs" +else + echo "βœ… config.yml already exists" +fi + +# Set proper permissions +echo "πŸ”§ Setting directory permissions..." +chmod -R 755 data workdir config calibration models output +echo "βœ… Permissions set" + +# Test docker-compose configuration +echo "πŸ§ͺ Testing Docker Compose configuration..." +if docker-compose config --quiet; then + echo "βœ… Docker Compose configuration is valid" +else + echo "❌ Docker Compose configuration has errors" + exit 1 +fi + +echo "" +echo "πŸŽ‰ Setup complete!" +echo "" +echo "Next steps:" +echo "1. Edit .env file to set your data paths" +echo "2. Edit workdir/config.yml for your processing pipeline" +echo "3. Place your video files in the data/ directory" +echo "4. Download model weights to the models/ directory" +echo "5. Run: docker-compose build" +echo "6. Run: docker-compose up pv-hawk" +echo "" +echo "For detailed usage instructions, see DOCKER_USAGE.md" \ No newline at end of file diff --git a/tests/README.md b/tests/README.md index 5c0d1ca..b5fe9d3 100644 --- a/tests/README.md +++ b/tests/README.md @@ -1,92 +1,49 @@ -### Prerequisites for Testing +# PV-Hawk Tests -Tests require DeepDiff and hypothesis, which you can install with -``` -python -m pip install deepdiff==5.7.0 hypothesis[numpy]==6.31.6 -``` -from within the Docker container. +This directory contains tests for the PV-Hawk computer vision pipeline. -### Run Integration Tests +## Test Structure -For integration tests run the test suite inside the Docker container in the `/pvextractor` directory with the command -``` -python -m unittest tests/integration/test_*.py -``` +- `unit/` - Unit tests for individual components +- `integration/` - Integration tests for full pipeline workflows -### Run Unit Tests +## Running Tests -Similarly, for unit tests run -``` +### Unit Tests +```bash python -m unittest tests/unit/test_*.py ``` -### Run All Tests -Both unit and integration tests can be run as follows +### Integration Tests +```bash +python -m unittest tests/integration/test_*.py ``` + +### All Tests +```bash python -m unittest tests/**/test_*.py ``` -### Coverage Report +## Test Categories -Make sure coverage is installed by running -``` -python -m pip install coverage -``` +- **Geometric algorithms** - Quadrilateral detection and processing +- **GPS utilities** - Coordinate transformations and interpolation +- **Image processing** - Cropping, preprocessing, and common utilities +- **Pipeline components** - Tracking, segmentation integration -Analyze coverage by running the following command from project root -``` -coverage run --source=. --branch -m unittest tests/integration/test_*.py -``` -or similarly for coverage of unit tests -``` -coverage run --source=. --branch -m unittest tests/unit/test_*.py -``` -or for both unit and integration tests -``` -coverage run --source=. --branch -m unittest tests/**/test_*.py -``` +## Requirements -View coverage report with -``` -coverage report -m +Install test dependencies: +```bash +pip install deepdiff hypothesis[numpy] ``` -or the html version with -``` -coverage html -``` - -### Mutation Testing - -Install mutmut -``` -python -m pip install mutmut -``` - -Perform mutation tests of a single test case with -``` -mutmut --paths-to-mutate="tests/integration/test_quadrilaterals.py" --runner="python -m unittest" run -``` -where `test_quadrilaterals` could be any other test module. - -Note: The command above is wrong. Mutmut mutates only the test case file in this case, not the code under test!!! - -### Origin of Test Data -Important: Do not create new test data, otherwise you may generate test data with updated (possibly buggy) code! Instead, keep the origin test data and make sure updated code passes all tests. The only reason for updating the test data is an update of the dataset structure. Note, however that this also requires updating downstream tools, such as PV Drone Inspect Viewer. +## Coverage -Test data in `tests/integration/data` was created by running the pipeline within Docker container in `/pvextractor` directory with the command -``` -python main.py tests/integration/data -``` -After completion, the updated test data is available in `tests/integration/data`. Note, that data was created on the CPU (GPUs were not provided in the Docker container). Using CPU vs GPU can result in a different order of the returned segmentation masks. - -The shortened TIFF stack was produced with tifftools 1.2.9 by thefollowing commands -``` -tifftools split 2_01.TIFF -``` -Manual deletion of frames 0..839 and 890...end (so that there are 50 frames remaining) -Then merge with -``` -tifftools merge $(ls) merged.TIFF +Generate coverage reports: +```bash +pip install coverage +coverage run --source=. --branch -m unittest tests/integration/test_*.py +coverage report -m +coverage html ``` -