R/utils.R
create_empty_changes_log.Rd
Creates an empty data frame with the correct structure for tracking annotation changes during a session.
create_empty_changes_log()
Empty data frame with columns: image, original_class, new_class
# Create an empty changes log changes <- create_empty_changes_log() print(names(changes)) #> [1] "image" "original_class" "new_class" print(nrow(changes)) #> [1] 0