Semantic Image Caption (a.k.a. SIC) is a Semantic MediaWiki extension to support the generation of image captions from annotations.
- PHP 7.1 or later
- MediaWiki 1.32 to 1.34
- Semantic MediaWiki 3.2 or later
The recommended way to install Semantic Image Caption is using Composer with MediaWiki's built-in support for Composer.
Note that Semantic MediaWiki must be installed first according to the installation instructions provided.
Change to the base directory of your MediaWiki installation. If you do not have a "composer.local.json" file yet, create one and add the following content to it:
{
"require": {
"mediawiki/semantic-image-caption": "~1.0"
}
}
If you already have a "composer.local.json" file add the following line to the end of the "require" section in your file:
"mediawiki/semantic-image-caption": "~1.0"
Remember to add a comma to the end of the preceding line in this section.
Run the following command in your shell:
php composer.phar update --no-dev
Note if you have Git installed on your system add the --prefer-source
flag to the above command.
Add the following line to the end of your "LocalSettings.php" file:
wfLoadExtension( 'SemanticImageCaption' );
Create a schema with the IMAGECAPTION_RULE_SCHEMA
type to identify the default_rule
and possible other rules to match a specific requirement for the generation of caption information.
Add caption annotations to images with a Text
or Monolingual text
type property (which is assigned to the caption_property
in the schema).
Depending on the rules defined, properties used, and captions provided, embedded images will show captions generated from image page annotations.
If you have remarks, questions, or suggestions, please send them to [email protected]. You can subscribe to this list here.
If you want to contribute work to the project please subscribe to the developers mailing list and have a look at the contribution guildline. A list of people who have made contributions in the past can be found here.
- File an issue
- Submit a pull request
- Ask a question on the mailing list
This extension provides unit and integration tests that are run by a continues integration platform but can also be executed using composer test
from the extension base directory.