Loading 3 - Images and Text.ipynb +31 −0 Original line number Diff line number Diff line %% Cell type:markdown id: tags: # 3 - Images and Text %% Cell type:markdown id: tags: In this block: * Overview IIIF * Overview OCR formats %% Cell type:markdown id: tags: * What is IIIF? * International Image Interoperability Framework ([http://iiif.io/](http://iiif.io/)) * standardised method of describing and delivering images over the web * community that develops APIs and implements them in Software %% Cell type:markdown id: tags:  %% Cell type:markdown id: tags: * IIIF Image API * requesting and delivering images on the Web * [https://iiif.io/api/image/2.1/](https://iiif.io/api/image/2.1/) * Image Request URI Syntax * {scheme}://{server}{/prefix}/{identifier}/{region}/{size}/{rotation}/{quality}.{format} * [http://iiif.onb.ac.at/images/ABO/Z196807705/00000009/full/full/0/native.jpg](http://iiif.onb.ac.at/images/ABO/Z196807705/00000009/full/full/0/native.jpg) * 90 degree rotation: [http://iiif.onb.ac.at/images/ABO/Z196807705/00000009/full/full/90/native.jpg](http://iiif.onb.ac.at/images/ABO/Z196807705/00000009/full/full/90/native.jpg) * "Articulus Quartus": [https://iiif.onb.ac.at/images/ABO/Z196807705/00000009/pct:0,0,100,33/full/0/native.jpg](https://iiif.onb.ac.at/images/ABO/Z196807705/00000009/pct:0,0,100,33/full/0/native.jpg) %% Cell type:markdown id: tags: * IIIF Presentation API * returns JSON-LD structured documents that together describe the structure and layout of a digitized object or other collection of images and related content * [https://iiif.io/api/presentation/2.1/](https://iiif.io/api/presentation/2.1/) * [https://iiif.onb.ac.at/presentation/ABO/+Z196807705/manifest/](https://iiif.onb.ac.at/presentation/ABO/+Z196807705/manifest/) %% Cell type:markdown id: tags: * Example download OCR text * Example download pre-resized images for machine learning * Example create IIIF collection from SPARQL query result %% Cell type:code id: tags: ``` python ``` media/api_puzzle_pieces.png 0 → 100644 +148 KiB Loading image diff... Loading
3 - Images and Text.ipynb +31 −0 Original line number Diff line number Diff line %% Cell type:markdown id: tags: # 3 - Images and Text %% Cell type:markdown id: tags: In this block: * Overview IIIF * Overview OCR formats %% Cell type:markdown id: tags: * What is IIIF? * International Image Interoperability Framework ([http://iiif.io/](http://iiif.io/)) * standardised method of describing and delivering images over the web * community that develops APIs and implements them in Software %% Cell type:markdown id: tags:  %% Cell type:markdown id: tags: * IIIF Image API * requesting and delivering images on the Web * [https://iiif.io/api/image/2.1/](https://iiif.io/api/image/2.1/) * Image Request URI Syntax * {scheme}://{server}{/prefix}/{identifier}/{region}/{size}/{rotation}/{quality}.{format} * [http://iiif.onb.ac.at/images/ABO/Z196807705/00000009/full/full/0/native.jpg](http://iiif.onb.ac.at/images/ABO/Z196807705/00000009/full/full/0/native.jpg) * 90 degree rotation: [http://iiif.onb.ac.at/images/ABO/Z196807705/00000009/full/full/90/native.jpg](http://iiif.onb.ac.at/images/ABO/Z196807705/00000009/full/full/90/native.jpg) * "Articulus Quartus": [https://iiif.onb.ac.at/images/ABO/Z196807705/00000009/pct:0,0,100,33/full/0/native.jpg](https://iiif.onb.ac.at/images/ABO/Z196807705/00000009/pct:0,0,100,33/full/0/native.jpg) %% Cell type:markdown id: tags: * IIIF Presentation API * returns JSON-LD structured documents that together describe the structure and layout of a digitized object or other collection of images and related content * [https://iiif.io/api/presentation/2.1/](https://iiif.io/api/presentation/2.1/) * [https://iiif.onb.ac.at/presentation/ABO/+Z196807705/manifest/](https://iiif.onb.ac.at/presentation/ABO/+Z196807705/manifest/) %% Cell type:markdown id: tags: * Example download OCR text * Example download pre-resized images for machine learning * Example create IIIF collection from SPARQL query result %% Cell type:code id: tags: ``` python ```