Nariman Habili

14 papers A 1B 2C 1Misc 3Journal 4Unranked 3
YearRankTypeTitle / Venue / Authors
2024 Misc conf
DICTA
Miaohua Zhang, Ali Cheraghian, Yi Qin, David Benn, Therese Rollan, Nariman Habili
2023 J jnl
CoRR
Nariman Habili, Jeremy Oorloff, Lars Petersson
2022 J jnl
CoRR
Nariman Habili, Ernest Kwan, Weihao Li, Christfried Webers, Jeremy Oorloff, Mohammad Ali Armin, Lars Petersson
2022 conf
ECCV Workshops (7)
Nariman Habili, Ernest Kwan, Weihao Li, Christfried Webers, Jeremy Oorloff, Mohammad Ali Armin, Lars Petersson
2022 J jnl
CoRR
Mithun Lal, Anthony Paproki, Nariman Habili, Lars Petersson, Olivier Salvado, Clinton Fookes
2019 Misc conf
ICASSP
Yu Zhang, Cong Phuoc Huynh, Nariman Habili, King Ngi Ngan
2017 Misc conf
DICTA
Yu Zhang, King Ngi Ngan, Cong Phuoc Huynh, Nariman Habili
2016 B conf
ICIP
Yu Zhang, Cong Phuoc Huynh, Nariman Habili, King Ngi Ngan
2015 conf
ASWEC (2)
Nariman Habili, Jeremy Oorloff
2013 B conf
ICIP
Ahmed Sohaib, Nariman Habili, Antonio Robles-Kelly
2004 conf
ICASSP (3)
Wei Wei, King Ngi Ngan, Nariman Habili
2004 J jnl
IEEE Trans. Circuits Syst. Video Technol.
Nariman Habili, Cheng-Chew Lim, Alireza Moini
2001 A conf
ICME
Nariman Habili, Cheng-Chew Lim, Alireza Moini
2000 C conf
VCIP
Nariman Habili, Alireza Moini, Neil Burgess
docker-build.sh
← Index docker-build.sh bash
#!/bin/bash

set -e

echo "Building REDB Docker image for linux/amd64 platform..."

# Function to tag the most recent <none> image
tag_unnamed_image() {
    local tag_name=$1
    local expected_size=$2
    
    # Get the most recent <none> image
    local image_id=$(docker images --filter "dangling=true" --format "{{.ID}}" | head -1)
    
    if [ -z "$image_id" ]; then
        echo "ERROR: No unnamed image found. Build may have failed."
        return 1
    fi
    
    local actual_size=$(docker images --format "table {{.ID}}\t{{.Size}}" | grep $image_id | awk '{print $2}')
    echo "Found image $image_id with size: $actual_size (expected: $expected_size)"
    
    # Tag the image
    echo "Tagging as $tag_name..."
    docker tag $image_id $tag_name
    
    return 0
}

# Build single unified image
echo ""
echo "Building REDB unified image - Supports both feature extraction and decompilation..."
echo "NOTE: If build hangs at 'exporting to image', press Ctrl+C - the image will still be created!"
echo ""

docker build --platform linux/amd64 -f Dockerfile -t redb:latest . || echo "Build interrupted (this is expected due to Docker Desktop bug)"

# Tag the image if it was built as unnamed
if docker images --filter "dangling=true" --format "{{.ID}}" | head -1 | grep -q "."; then
    tag_unnamed_image "redb:latest" "500MB"
fi

echo ""
echo "Docker build completed!"
echo ""
echo "Available images:"
docker images | grep redb

echo ""
echo "Image size:"
echo "REDB unified image: $(docker images redb:latest --format "{{.Size}}")"

echo ""
echo "Usage:"
echo "  Feature extraction: docker run redb:latest python3 start.py --nomad-job"
echo "  Decompilation:      docker run redb:latest python3 start.py --nomad-job --decompile"
echo "  Custom modules:     docker run redb:latest python3 start.py --nomad-job --modules BasicPropertiesExtractor,PEFeaturesExtractor"