Standardisation 4
This commit is contained in:
+366
-401
@@ -1,435 +1,400 @@
|
||||
import sys
|
||||
import os
|
||||
import json
|
||||
import collections
|
||||
from __future__ import annotations
|
||||
|
||||
import argparse
|
||||
import concurrent.futures
|
||||
from collections import defaultdict
|
||||
from collections.abc import Sequence
|
||||
from pathlib import Path
|
||||
from typing import Any
|
||||
|
||||
from PIL import Image, ImageDraw
|
||||
import threading
|
||||
|
||||
import annotating
|
||||
import utils
|
||||
from copienator import (
|
||||
EvaluationWorkspace,
|
||||
ExitCode,
|
||||
atomic_write_json,
|
||||
evaluation_parser,
|
||||
execute,
|
||||
read_json,
|
||||
workspace_from_args,
|
||||
)
|
||||
from copienator.annotation_actions import apply_checkbox_actions, apply_score_overrides
|
||||
from copienator.annotation_data import AnnotationData, RefaireList, load_annotation_data
|
||||
from copienator.filesystem import staged_files
|
||||
from reading_annotations import (
|
||||
concatenate,
|
||||
detect_checks_and_notes,
|
||||
has_significant_notes,
|
||||
)
|
||||
|
||||
from utils import natural_key, pdf_image_of_enonce, pdf_image_of_solution, pdf_images_of_contexts
|
||||
from reading_annotations import detect_checks_and_notes, has_significant_notes
|
||||
LabelNotes = dict[str, dict[str, Any]]
|
||||
ScanResult = tuple[dict[str, list[dict[str, Any]]], dict[str, LabelNotes]]
|
||||
|
||||
def get_extra_pdfs_as_images(root_dir, label, annotating_module, all_labels):
|
||||
"""Fetches Text and Sol pdfs for a given label and converts them to images."""
|
||||
extra_images = []
|
||||
a, b = pdf_image_of_enonce(root_dir, label), pdf_image_of_solution(root_dir, label)
|
||||
e = pdf_images_of_contexts(root_dir, label, all_labels)
|
||||
for c in e + [a, b]:
|
||||
if c:
|
||||
img, _, _ = annotating_module.make_base_image(c)
|
||||
if img:
|
||||
extra_images.append(img)
|
||||
|
||||
return extra_images
|
||||
def get_extra_pdfs_as_images(
|
||||
root_dir: str | Path,
|
||||
label: str,
|
||||
annotating_module: Any,
|
||||
all_labels: list[str],
|
||||
) -> list[Image.Image]:
|
||||
"""Convert the context, question and solution PDFs associated with a label."""
|
||||
paths = [
|
||||
*utils.pdf_images_of_contexts(root_dir, label, all_labels),
|
||||
utils.pdf_image_of_enonce(root_dir, label),
|
||||
utils.pdf_image_of_solution(root_dir, label),
|
||||
]
|
||||
images = []
|
||||
for path in paths:
|
||||
if path:
|
||||
image, _, _ = annotating_module.make_base_image(path)
|
||||
if image is not None:
|
||||
images.append(image)
|
||||
return images
|
||||
|
||||
def save_paginated_pdf(image_groups, output_path):
|
||||
"""Concatenates groups of images vertically, adding inner borders and margins."""
|
||||
if not image_groups:
|
||||
|
||||
def save_paginated_pdf(image_groups: list[list[Image.Image]], output_path: Path) -> None:
|
||||
"""Paginate vertically concatenated image groups and save them as a PDF."""
|
||||
non_empty = [group for group in image_groups if group]
|
||||
if not non_empty:
|
||||
return
|
||||
|
||||
max_w = max(img.width for group in image_groups for img in group)
|
||||
max_page_h = int(max_w * 1.414 * 1.25)
|
||||
|
||||
# Calculate sizes in pixels at 100 DPI
|
||||
border_px = int((0.2 / 2.54) * 100)
|
||||
max_width = max(image.width for group in non_empty for image in group)
|
||||
max_page_height = int(max_width * 1.414 * 1.25)
|
||||
border = int((0.2 / 2.54) * 100)
|
||||
left_margin = int((0.3 / 2.54) * 100)
|
||||
tb_margin = int((0.2 / 2.54) * 100)
|
||||
vertical_margin = int((0.2 / 2.54) * 100)
|
||||
max_content_height = max_page_height - 2 * vertical_margin
|
||||
|
||||
# Available height for images once top/bottom margins are added
|
||||
max_content_h = max_page_h - (2 * tb_margin)
|
||||
pages: list[Image.Image] = []
|
||||
page_images: list[Image.Image] = []
|
||||
page_height = 0
|
||||
|
||||
pages = []
|
||||
current_page_imgs = []
|
||||
current_h = 0
|
||||
|
||||
for group in image_groups:
|
||||
if not group:
|
||||
continue
|
||||
|
||||
# Process the group to add borders
|
||||
processed_group = []
|
||||
for i, img in enumerate(group):
|
||||
if i in (0, 1):
|
||||
img = img.copy()
|
||||
draw = ImageDraw.Draw(img)
|
||||
color = "black" if i == 0 else "blue"
|
||||
|
||||
draw.rectangle(
|
||||
[0, 0, img.width - 1, img.height - 1],
|
||||
outline=color,
|
||||
width=border_px
|
||||
)
|
||||
processed_group.append(img)
|
||||
|
||||
group_h = sum(img.height for img in processed_group)
|
||||
|
||||
if current_page_imgs and (current_h + group_h > max_content_h):
|
||||
# Create page with margins included in dimensions
|
||||
page = Image.new("RGB", (max_w + left_margin, current_h + 2 * tb_margin), "white")
|
||||
y = tb_margin
|
||||
for c_img in current_page_imgs:
|
||||
page.paste(c_img, (left_margin, y))
|
||||
y += c_img.height
|
||||
pages.append(page)
|
||||
|
||||
current_page_imgs = processed_group
|
||||
current_h = group_h
|
||||
else:
|
||||
current_page_imgs.extend(processed_group)
|
||||
current_h += group_h
|
||||
|
||||
if current_page_imgs:
|
||||
page = Image.new("RGB", (max_w + left_margin, current_h + 2 * tb_margin), "white")
|
||||
y = tb_margin
|
||||
for c_img in current_page_imgs:
|
||||
page.paste(c_img, (left_margin, y))
|
||||
y += c_img.height
|
||||
pages.append(page)
|
||||
|
||||
if pages:
|
||||
pages[0].save(output_path, "PDF", resolution=100.0, save_all=True, append_images=pages[1:])
|
||||
|
||||
def apply_actions_and_regenerate_grouped(root_dir, data, student_id,
|
||||
actions, label_notes, all_labels,
|
||||
update_score=False):
|
||||
"""
|
||||
Modifies data based on actions, pastes label-specific note crops,
|
||||
regenerates label images for consistency, saves dirty ones,
|
||||
and generates Concat.jpg in the BGnot/Copie{id} directory.
|
||||
Returns a string of accumulated log messages.
|
||||
"""
|
||||
logs = [f"\nProcessing compilation for: Copie{student_id}"]
|
||||
output_dir = os.path.join(root_dir, "BGnot", f"Copie{student_id}")
|
||||
os.makedirs(output_dir, exist_ok=True)
|
||||
|
||||
score_path = os.path.join(output_dir, "score.json")
|
||||
labels_data = data.get(student_id, {})
|
||||
|
||||
# --- 1. Apply Actions to Data (Update scores / Flags for deletion) ---
|
||||
actions_by_label = collections.defaultdict(list)
|
||||
for a in actions:
|
||||
actions_by_label[a['label']].append(a)
|
||||
|
||||
dirty_labels = set()
|
||||
|
||||
for label, acts in actions_by_label.items():
|
||||
if label not in labels_data: continue
|
||||
|
||||
content = labels_data[label]
|
||||
result = content['result']
|
||||
feedbacks = result.get('feedback', [])
|
||||
|
||||
# Helpers to find objects by index
|
||||
global_fb = [f for f in feedbacks if not f.get('box_2d')]
|
||||
local_fb = [f for f in feedbacks if f.get('box_2d')]
|
||||
local_fb.sort(key=lambda x: x['box_2d'][0])
|
||||
|
||||
for act in acts:
|
||||
if act['type'] == 'score':
|
||||
result['score'] = act['value']
|
||||
dirty_labels.add(label)
|
||||
logs.append(f" > Updated score for {label} to {act['value']}")
|
||||
|
||||
elif act['type'] == 'clear_all':
|
||||
for fb in feedbacks:
|
||||
fb["to_delete"] = True
|
||||
if fb.get("box_2d"):
|
||||
fb["norectangle"] = True
|
||||
dirty_labels.add(label)
|
||||
logs.append(f" > Cleared all feedbacks in {label}")
|
||||
|
||||
elif act['type'] == 'del_global':
|
||||
if act['index'] < len(global_fb):
|
||||
global_fb[act['index']]["to_delete"] = True
|
||||
dirty_labels.add(label)
|
||||
logs.append(f" > Deleted global feedback in {label}")
|
||||
|
||||
elif act['type'] in ('del_local', 'del_local_rect'):
|
||||
if act['index'] < len(local_fb):
|
||||
target = local_fb[act['index']]
|
||||
if act['type'] == 'del_local':
|
||||
target["to_delete"] = True
|
||||
logs.append(f" > Deleted local feedback in {label}")
|
||||
else:
|
||||
target["norectangle"] = True
|
||||
logs.append(f" > Deleted rect in {label}")
|
||||
dirty_labels.add(label)
|
||||
|
||||
# --- 1.5 Override with existing score.json if requested ---
|
||||
if update_score and os.path.exists(score_path):
|
||||
try:
|
||||
with open(score_path, "r") as f:
|
||||
existing_scores = json.load(f)
|
||||
for label, existing_score in existing_scores.items():
|
||||
if label in labels_data:
|
||||
current_score = str(labels_data[label]['result'].get('score', 0))
|
||||
# If manually modified, override the result and mark dirty
|
||||
if current_score != str(existing_score):
|
||||
labels_data[label]['result']['score'] = existing_score
|
||||
dirty_labels.add(label)
|
||||
logs.append(f" > Overrode score for {label} to {existing_score} from existing score.json")
|
||||
except json.JSONDecodeError:
|
||||
logs.append(f" > Warning: Could not read existing {score_path}")
|
||||
|
||||
|
||||
# --- 2. Process Images (Regenerate & Concatenate) ---
|
||||
concat_list = []
|
||||
concat_list_F = []
|
||||
d_notes = dict.fromkeys(all_labels, "")
|
||||
|
||||
# Iterate over all labels naturally to assemble a complete student profile
|
||||
sorted_labels = sorted(labels_data.items(), key=lambda x: natural_key(x[0]))
|
||||
|
||||
for label, content in sorted_labels:
|
||||
result = content['result']
|
||||
d_notes[label] = str(result.get('score', 0))
|
||||
|
||||
# pdf_path = Path(root_dir) / "Copies" / f"Copie{student_id}" / f"{label}.pdf"
|
||||
pdf_path = content.get('pdf_path')
|
||||
if not os.path.exists(pdf_path): continue
|
||||
|
||||
(base_img, _, _) = annotating.make_base_image(pdf_path)
|
||||
|
||||
# Compose uses the result object we modified in step 1
|
||||
final_img, new_header_h = annotating.compose_label_image(
|
||||
base_img, label, content['result'], content['coordinates'][0],
|
||||
with_error=False
|
||||
def finish_page() -> None:
|
||||
nonlocal page_images, page_height
|
||||
if not page_images:
|
||||
return
|
||||
page = Image.new(
|
||||
"RGB",
|
||||
(max_width + left_margin, page_height + 2 * vertical_margin),
|
||||
"white",
|
||||
)
|
||||
if final_img is None:
|
||||
current_y = vertical_margin
|
||||
for image in page_images:
|
||||
page.paste(image, (left_margin, current_y))
|
||||
current_y += image.height
|
||||
pages.append(page)
|
||||
page_images = []
|
||||
page_height = 0
|
||||
|
||||
for group in non_empty:
|
||||
processed: list[Image.Image] = []
|
||||
for index, image in enumerate(group):
|
||||
if index in (0, 1):
|
||||
image = image.copy()
|
||||
color = "black" if index == 0 else "blue"
|
||||
ImageDraw.Draw(image).rectangle(
|
||||
[0, 0, image.width - 1, image.height - 1],
|
||||
outline=color,
|
||||
width=border,
|
||||
)
|
||||
processed.append(image)
|
||||
group_height = sum(image.height for image in processed)
|
||||
if page_images and page_height + group_height > max_content_height:
|
||||
finish_page()
|
||||
page_images.extend(processed)
|
||||
page_height += group_height
|
||||
finish_page()
|
||||
pages[0].save(
|
||||
output_path,
|
||||
"PDF",
|
||||
resolution=100.0,
|
||||
save_all=True,
|
||||
append_images=pages[1:],
|
||||
)
|
||||
|
||||
|
||||
def _scan_annotation_directory(
|
||||
directory: Path,
|
||||
only_ids: set[str] | None = None,
|
||||
default_student_id: str | None = None,
|
||||
) -> ScanResult:
|
||||
bnote_path = directory / "bnote.json"
|
||||
if not bnote_path.is_file():
|
||||
raise FileNotFoundError(f"Missing {bnote_path}")
|
||||
bnote = read_json(bnote_path)
|
||||
if not isinstance(bnote, dict):
|
||||
raise TypeError(f"Expected a JSON object in {bnote_path}")
|
||||
images = [item for item in bnote.get("images", []) if isinstance(item, dict)]
|
||||
if only_ids and not any(
|
||||
str(item.get("id", default_student_id)) in only_ids for item in images
|
||||
):
|
||||
return {}, {}
|
||||
|
||||
actions, notes_image = detect_checks_and_notes(directory)
|
||||
if notes_image is None:
|
||||
return {}, {}
|
||||
actions_by_student: dict[str, list[dict[str, Any]]] = defaultdict(list)
|
||||
notes_by_student: dict[str, LabelNotes] = defaultdict(dict)
|
||||
for action in actions:
|
||||
raw_student_id = action.get("student_id", default_student_id)
|
||||
if raw_student_id is not None:
|
||||
actions_by_student[str(raw_student_id)].append(action)
|
||||
for image_info in images:
|
||||
student_id = str(image_info.get("id", default_student_id or ""))
|
||||
label = str(image_info.get("label", ""))
|
||||
hmin = int(image_info.get("hmin", 0))
|
||||
hmax = int(image_info.get("hmax", 0))
|
||||
if student_id and label and hmax > hmin:
|
||||
crop = notes_image.crop((0, hmin, notes_image.width, hmax))
|
||||
if has_significant_notes(crop):
|
||||
notes_by_student[student_id][label] = {
|
||||
"img": crop,
|
||||
"old_header_h": int(image_info.get("header_height", 0)),
|
||||
}
|
||||
return dict(actions_by_student), dict(notes_by_student)
|
||||
|
||||
|
||||
def _merge_scan_result(
|
||||
target_actions: dict[str, list[dict[str, Any]]],
|
||||
target_notes: dict[str, LabelNotes],
|
||||
result: ScanResult,
|
||||
) -> None:
|
||||
actions, notes = result
|
||||
for student_id, student_actions in actions.items():
|
||||
target_actions[student_id].extend(student_actions)
|
||||
for student_id, student_notes in notes.items():
|
||||
target_notes[student_id].update(student_notes)
|
||||
|
||||
|
||||
def apply_actions_and_regenerate_grouped(
|
||||
workspace: EvaluationWorkspace,
|
||||
data: AnnotationData,
|
||||
student_id: str,
|
||||
actions: list[dict[str, Any]],
|
||||
label_notes: LabelNotes,
|
||||
all_labels: list[str],
|
||||
*,
|
||||
update_score: bool = False,
|
||||
) -> tuple[ExitCode, str]:
|
||||
"""Apply grouped annotations and atomically merge regenerated student files."""
|
||||
logs = [f"\nProcessing compilation for: Copie{student_id}"]
|
||||
output_dir = workspace.annotation_dir("grouped") / f"Copie{student_id}"
|
||||
labels_data = data.get(student_id, {})
|
||||
dirty_labels = apply_checkbox_actions(labels_data, actions, logs.append)
|
||||
if update_score:
|
||||
dirty_labels |= apply_score_overrides(
|
||||
labels_data, output_dir / "score.json", logs.append
|
||||
)
|
||||
|
||||
scores = dict.fromkeys(all_labels, "")
|
||||
dirty_images: dict[str, Image.Image] = {}
|
||||
concat_images: list[Image.Image] = []
|
||||
filtered_groups: list[list[Image.Image]] = []
|
||||
incomplete = False
|
||||
|
||||
for label, content in sorted(labels_data.items(), key=lambda item: utils.natural_key(item[0])):
|
||||
result = content["result"]
|
||||
scores[label] = str(result.get("score", 0))
|
||||
pdf_path = Path(content["pdf_path"])
|
||||
if not pdf_path.is_file():
|
||||
logs.append(f" Missing answer PDF: {pdf_path}")
|
||||
incomplete = True
|
||||
continue
|
||||
base_image, _, _ = annotating.make_base_image(pdf_path)
|
||||
final_image, new_header_height = annotating.compose_label_image(
|
||||
base_image,
|
||||
label,
|
||||
result,
|
||||
content["coordinates"][0],
|
||||
with_error=False,
|
||||
)
|
||||
if final_image is None:
|
||||
incomplete = True
|
||||
continue
|
||||
|
||||
# Overlay manual notes specific to this label
|
||||
has_notes = False
|
||||
if label in label_notes:
|
||||
note_info = label_notes[label]
|
||||
sub_note = note_info['img']
|
||||
old_header_h = int(note_info['old_header_h'])
|
||||
sub_note = label_notes[label]["img"]
|
||||
old_header_height = int(label_notes[label]["old_header_h"])
|
||||
has_notes = has_significant_notes(sub_note)
|
||||
if has_notes:
|
||||
width, height = sub_note.size
|
||||
if old_header_height > 0:
|
||||
header = sub_note.crop((0, 0, width, min(height, old_header_height)))
|
||||
final_image.paste(header, (0, 0), mask=header)
|
||||
if height > old_header_height:
|
||||
body = sub_note.crop((0, old_header_height, width, height))
|
||||
final_image.paste(body, (0, new_header_height), mask=body)
|
||||
|
||||
if has_significant_notes(sub_note):
|
||||
has_notes = True
|
||||
w, h = sub_note.size
|
||||
|
||||
# 1. Paste header ink at the top
|
||||
if old_header_h > 0:
|
||||
header_crop = sub_note.crop((0, 0, w, min(h, old_header_h)))
|
||||
final_img.paste(header_crop, (0, 0), mask=header_crop)
|
||||
|
||||
# 2. Paste student-content ink at the new header height
|
||||
if h > old_header_h:
|
||||
body_crop = sub_note.crop((0, old_header_h, w, h))
|
||||
final_img.paste(body_crop, (0, new_header_h), mask=body_crop)
|
||||
|
||||
# Save individual file if Modified (Dirty logic or visual notes)
|
||||
if (label in dirty_labels) or has_notes:
|
||||
save_path = os.path.join(output_dir, f"{label}.jpg")
|
||||
final_img.save(save_path)
|
||||
if label in dirty_labels or has_notes:
|
||||
dirty_images[label] = final_image
|
||||
logs.append(f" Saved dirty image: {label}.jpg")
|
||||
concat_images.append(final_image)
|
||||
|
||||
concat_list.append(final_img)
|
||||
feedbacks = result.get("feedback", [])
|
||||
perfect = float(scores[label]) >= 4.0 and all(
|
||||
feedback.get("to_delete", False) for feedback in feedbacks
|
||||
)
|
||||
if not perfect or has_notes:
|
||||
extras = get_extra_pdfs_as_images(
|
||||
workspace.root, label, annotating, all_labels
|
||||
)
|
||||
filtered_groups.append([*extras, final_image])
|
||||
|
||||
perfect_no_comment = True
|
||||
if float(d_notes[label]) < 4.0:
|
||||
perfect_no_comment = False
|
||||
else:
|
||||
lfb = result.get('feedback', [])
|
||||
for e in lfb:
|
||||
if "to_delete" not in e or not e["to_delete"]:
|
||||
perfect_no_comment = False
|
||||
concat_image = concatenate(concat_images)
|
||||
with staged_files(output_dir) as staging:
|
||||
for label, image in dirty_images.items():
|
||||
image.save(staging / f"{label}.jpg")
|
||||
atomic_write_json(staging / "score.json", scores)
|
||||
if concat_image is not None:
|
||||
concat_image.save(staging / "Concat.jpg")
|
||||
if filtered_groups:
|
||||
save_paginated_pdf(filtered_groups, staging / "Concat_F.pdf")
|
||||
logs.append(f" Saved regenerated files in {output_dir}")
|
||||
status = ExitCode.PARTIAL if incomplete else ExitCode.SUCCESS
|
||||
return status, "\n".join(logs)
|
||||
|
||||
if not perfect_no_comment or has_notes:
|
||||
extras = get_extra_pdfs_as_images(root_dir, label, annotating, all_labels)
|
||||
extras.append(final_img)
|
||||
concat_list_F.append(extras)
|
||||
|
||||
# --- 3. Save Final Outputs ---
|
||||
with open(score_path, "w") as f:
|
||||
json.dump(d_notes, f, indent=4)
|
||||
logs.append(f" Saved {score_path}")
|
||||
def _read_refaire(workspace: EvaluationWorkspace) -> tuple[RefaireList, dict[str, list[str]]]:
|
||||
loaded = read_json(workspace.refaire_file)
|
||||
if not isinstance(loaded, list):
|
||||
raise TypeError("refaire.json must contain a JSON array")
|
||||
entries: RefaireList = []
|
||||
by_student: dict[str, list[str]] = {}
|
||||
for entry in loaded:
|
||||
if not isinstance(entry, list) or len(entry) != 2 or not isinstance(entry[1], list):
|
||||
raise TypeError(f"Malformed refaire entry: {entry!r}")
|
||||
copy_name, labels = entry
|
||||
student_id = str(copy_name).removeprefix("Copie")
|
||||
normalized_labels = [str(label) for label in labels]
|
||||
entries.append([str(copy_name), normalized_labels])
|
||||
by_student[student_id] = normalized_labels
|
||||
return entries, by_student
|
||||
|
||||
if concat_list:
|
||||
max_w = max(i.width for i in concat_list)
|
||||
total_h = sum(i.height for i in concat_list)
|
||||
full_img = Image.new("RGB", (max_w, total_h), "white")
|
||||
|
||||
y = 0
|
||||
for img in concat_list:
|
||||
full_img.paste(img, (0, y))
|
||||
y += img.height
|
||||
def run(
|
||||
workspace: EvaluationWorkspace,
|
||||
*,
|
||||
refaire: bool = False,
|
||||
update_score: bool = False,
|
||||
) -> ExitCode:
|
||||
workspace.require_files("labels", "correction.json")
|
||||
workspace.require_directories("Copies", "Par label", "BGnot")
|
||||
refaire_list: RefaireList | None = None
|
||||
refaire_by_student: dict[str, list[str]] = {}
|
||||
if refaire:
|
||||
workspace.require_files("refaire.json")
|
||||
workspace.require_directories("BRnot")
|
||||
refaire_list, refaire_by_student = _read_refaire(workspace)
|
||||
|
||||
full_img.save(os.path.join(output_dir, "Concat.jpg"))
|
||||
logs.append(f" Saved regenerated Concat.jpg")
|
||||
all_labels = utils.read_all_labels(workspace.root)
|
||||
loaded = load_annotation_data(workspace, refaire_list=refaire_list)
|
||||
for warning in loaded.warnings:
|
||||
print(f"Warning: {warning}")
|
||||
if not loaded.data:
|
||||
print("No annotation data found.")
|
||||
return ExitCode.PARTIAL
|
||||
|
||||
if concat_list_F:
|
||||
pdf_out_path = os.path.join(output_dir, "Concat_F.pdf")
|
||||
save_paginated_pdf(concat_list_F, pdf_out_path)
|
||||
logs.append(f" Saved regenerated Concat_F.pdf")
|
||||
actions_by_student: dict[str, list[dict[str, Any]]] = defaultdict(list)
|
||||
notes_by_student: dict[str, LabelNotes] = defaultdict(dict)
|
||||
only_ids = set(refaire_by_student) or None
|
||||
group_dirs = [
|
||||
path
|
||||
for path in workspace.annotation_dir("grouped").iterdir()
|
||||
if path.is_dir() and not path.name.startswith("Copie")
|
||||
]
|
||||
with concurrent.futures.ThreadPoolExecutor(max_workers=6) as executor:
|
||||
futures = [
|
||||
executor.submit(_scan_annotation_directory, path, only_ids)
|
||||
for path in group_dirs
|
||||
]
|
||||
for future in concurrent.futures.as_completed(futures):
|
||||
_merge_scan_result(actions_by_student, notes_by_student, future.result())
|
||||
|
||||
return "\n".join(logs)
|
||||
refaire_incomplete = False
|
||||
if refaire:
|
||||
for student_id, requested_labels in refaire_by_student.items():
|
||||
selected = requested_labels or list(loaded.data.get(student_id, {}))
|
||||
selected_set = set(selected)
|
||||
directory = workspace.annotation_dir("refaire") / f"Copie{student_id}"
|
||||
if not directory.is_dir():
|
||||
print(f"Warning: missing refaire annotation directory {directory}")
|
||||
refaire_incomplete = True
|
||||
continue
|
||||
actions_by_student[student_id] = [
|
||||
action
|
||||
for action in actions_by_student[student_id]
|
||||
if str(action.get("label")) not in selected_set
|
||||
]
|
||||
for label in selected:
|
||||
notes_by_student[student_id].pop(label, None)
|
||||
refaire_actions, refaire_notes = _scan_annotation_directory(
|
||||
directory, default_student_id=student_id
|
||||
)
|
||||
for action in refaire_actions.get(student_id, []):
|
||||
if str(action.get("label")) in selected_set:
|
||||
actions_by_student[student_id].append(action)
|
||||
for label, note in refaire_notes.get(student_id, {}).items():
|
||||
if label in selected_set:
|
||||
notes_by_student[student_id][label] = note
|
||||
|
||||
from utils import read_all_labels
|
||||
import argparse
|
||||
status = (
|
||||
ExitCode.PARTIAL
|
||||
if loaded.warnings or refaire_incomplete
|
||||
else ExitCode.SUCCESS
|
||||
)
|
||||
student_ids = list(refaire_by_student) if refaire else sorted(loaded.data, key=utils.natural_key)
|
||||
with concurrent.futures.ThreadPoolExecutor(max_workers=4) as executor:
|
||||
futures = {
|
||||
executor.submit(
|
||||
apply_actions_and_regenerate_grouped,
|
||||
workspace,
|
||||
loaded.data,
|
||||
student_id,
|
||||
actions_by_student[student_id],
|
||||
notes_by_student[student_id],
|
||||
all_labels,
|
||||
update_score=update_score,
|
||||
): student_id
|
||||
for student_id in student_ids
|
||||
if student_id in loaded.data
|
||||
}
|
||||
for future in concurrent.futures.as_completed(futures):
|
||||
result, output = future.result()
|
||||
print(output)
|
||||
if result != ExitCode.SUCCESS:
|
||||
status = ExitCode.PARTIAL
|
||||
return status
|
||||
|
||||
|
||||
def build_parser() -> argparse.ArgumentParser:
|
||||
parser = evaluation_parser("Read grouped annotations and regenerate copies")
|
||||
parser.add_argument(
|
||||
"--refaire",
|
||||
action="store_true",
|
||||
help="Use refaire.json and merge annotations from BRnot",
|
||||
)
|
||||
parser.add_argument(
|
||||
"--update-score",
|
||||
action="store_true",
|
||||
help="Override generated scores with values from existing score.json files",
|
||||
)
|
||||
return parser
|
||||
|
||||
|
||||
def main(argv: Sequence[str] | None = None) -> int:
|
||||
parser = build_parser()
|
||||
|
||||
def handle(args: argparse.Namespace) -> ExitCode:
|
||||
return run(
|
||||
workspace_from_args(args),
|
||||
refaire=args.refaire,
|
||||
update_score=args.update_score,
|
||||
)
|
||||
|
||||
return execute(parser, argv, handle)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
parser = argparse.ArgumentParser(description="Read grouped annotations and compile PDFs")
|
||||
parser.add_argument("input_path", help="Directory path")
|
||||
parser.add_argument("--refaire", action="store_true", help="Merge refaire annotations from Bnot")
|
||||
parser.add_argument("--update-score", action="store_true", help="Override scores with values from existing score.json")
|
||||
args = parser.parse_args()
|
||||
|
||||
root_dir = sys.argv[1]
|
||||
bgnot_dir = os.path.join(root_dir, "BGnot")
|
||||
|
||||
if not os.path.exists(bgnot_dir):
|
||||
print(f"Directory {bgnot_dir} does not exist. Run annotating_by_label.py first.")
|
||||
sys.exit(1)
|
||||
|
||||
try:
|
||||
all_labels = read_all_labels(Path(root_dir))
|
||||
except FileNotFoundError:
|
||||
all_labels = []
|
||||
|
||||
refaire_dict = {}
|
||||
if args.refaire:
|
||||
refaire_path = os.path.join(root_dir, "refaire.json")
|
||||
if os.path.exists(refaire_path):
|
||||
with open(refaire_path, "r", encoding="utf-8") as f:
|
||||
refaire_list = json.load(f)
|
||||
for c_name, labels in refaire_list:
|
||||
sid = c_name.replace("Copie", "")
|
||||
refaire_dict[sid] = labels
|
||||
else:
|
||||
print(f"Warning: --refaire flag used, but {refaire_path} not found.")
|
||||
|
||||
|
||||
# Load original data
|
||||
if args.refaire and refaire_list:
|
||||
original_data = annotating.make_dictionary(root_dir,
|
||||
refaire=True,
|
||||
refaire_list=refaire_list)
|
||||
else:
|
||||
original_data = annotating.make_dictionary(root_dir)
|
||||
|
||||
lock = threading.Lock()
|
||||
actions_by_student = collections.defaultdict(list)
|
||||
notes_by_student = collections.defaultdict(dict)
|
||||
|
||||
|
||||
def process_bgnot_entry(entry, only_ids=None):
|
||||
gdir = os.path.join(bgnot_dir, entry)
|
||||
if not os.path.isdir(gdir) or entry.startswith("Copie"):
|
||||
return
|
||||
bnote_path = os.path.join(gdir, "bnote.json")
|
||||
with open(bnote_path, "r") as f:
|
||||
bnote_data = json.load(f)
|
||||
|
||||
if only_ids:
|
||||
id_found = False
|
||||
for d in bnote_data["images"]:
|
||||
if d["id"] in only_ids:
|
||||
id_found = True
|
||||
if not id_found:
|
||||
return
|
||||
|
||||
actions, notes_img = detect_checks_and_notes(gdir)
|
||||
if not os.path.exists(bnote_path) or notes_img is None:
|
||||
return
|
||||
|
||||
|
||||
with lock:
|
||||
for act in actions:
|
||||
sid = str(act.get("student_id"))
|
||||
if sid: actions_by_student[sid].append(act)
|
||||
|
||||
for img_info in bnote_data.get("images", []):
|
||||
sid, lbl = str(img_info.get("id")), img_info.get("label")
|
||||
hmin, hmax = img_info.get("hmin", 0), img_info.get("hmax", 0)
|
||||
if hmax > hmin:
|
||||
crop = notes_img.crop((0, hmin, notes_img.width, hmax))
|
||||
if has_significant_notes(crop):
|
||||
notes_by_student[sid][lbl] = {'img': crop,
|
||||
'old_header_h': img_info.get("header_height", 0)}
|
||||
|
||||
|
||||
def process_refaire_entry(sid, r_labels):
|
||||
s_bnot_dir = os.path.join(root_dir, "BRnot", f"Copie{sid}")
|
||||
if not os.path.exists(s_bnot_dir): return
|
||||
if not r_labels:
|
||||
r_labels = list(original_data.get(sid, {}).keys())
|
||||
|
||||
with lock:
|
||||
actions_by_student[sid] = [a for a in actions_by_student[sid]
|
||||
if a.get('label') not in r_labels]
|
||||
for lbl in r_labels:
|
||||
notes_by_student[sid].pop(lbl, None)
|
||||
|
||||
b_actions, b_notes_img = detect_checks_and_notes(s_bnot_dir)
|
||||
b_bnote_path = os.path.join(s_bnot_dir, "bnote.json")
|
||||
if os.path.exists(b_bnote_path):
|
||||
with open(b_bnote_path, "r") as f:
|
||||
b_bnote_data = json.load(f)
|
||||
with lock:
|
||||
for act in b_actions:
|
||||
act["student_id"] = sid
|
||||
actions_by_student[sid].append(act)
|
||||
if b_notes_img:
|
||||
for img_info in b_bnote_data.get("images", []):
|
||||
lbl = img_info.get("label")
|
||||
hmin, hmax = img_info.get("hmin", 0), img_info.get("hmax", 0)
|
||||
if hmax > hmin:
|
||||
crop = b_notes_img.crop((0, hmin, b_notes_img.width, hmax))
|
||||
if has_significant_notes(crop):
|
||||
notes_by_student[sid][lbl] = \
|
||||
{'img': crop,
|
||||
'old_header_h': img_info.get("header_height", 0)}
|
||||
|
||||
|
||||
|
||||
# --- 0. Read refaire.json if requested ---
|
||||
|
||||
if refaire_dict:
|
||||
only_ids = [ids for ids in refaire_dict]
|
||||
else:
|
||||
only_ids = None
|
||||
|
||||
|
||||
# Lecture des bgnot
|
||||
with concurrent.futures.ThreadPoolExecutor(max_workers=6) as executor:
|
||||
executor.map(lambda x: process_bgnot_entry(x, only_ids=only_ids),
|
||||
os.listdir(bgnot_dir))
|
||||
|
||||
# Refaire
|
||||
if args.refaire and refaire_dict:
|
||||
for sid, labels in refaire_dict.items():
|
||||
process_refaire_entry(sid, labels)
|
||||
|
||||
|
||||
def process_student(sid):
|
||||
if sid not in original_data:
|
||||
return ""
|
||||
return apply_actions_and_regenerate_grouped(
|
||||
root_dir,
|
||||
original_data,
|
||||
sid,
|
||||
actions_by_student[sid],
|
||||
notes_by_student[sid],
|
||||
all_labels,
|
||||
update_score=args.update_score
|
||||
)
|
||||
|
||||
# --- 2. Process each student concurrently using 4 threads ---
|
||||
sids = sorted(original_data.keys(), key=natural_key)
|
||||
with concurrent.futures.ThreadPoolExecutor(max_workers=4) as executor:
|
||||
if refaire_dict:
|
||||
futures = {executor.submit(process_student, sid): sid for sid in refaire_dict}
|
||||
else:
|
||||
futures = {executor.submit(process_student, sid): sid for sid in sids}
|
||||
|
||||
for future in concurrent.futures.as_completed(futures):
|
||||
output = future.result()
|
||||
if output:
|
||||
print(output)
|
||||
raise SystemExit(main())
|
||||
|
||||
Reference in New Issue
Block a user